Skip to content

Commit d881947

Browse files
committed
Version bump 2.0.0rc1
1 parent eb32fe5 commit d881947

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Using old Mistune? Checkout docs: <https://mistune.readthedocs.io/en/v0.8.4/>
3232
To install v2 of mistune:
3333

3434
```
35-
$ pip install mistune==2.0.0a6
35+
$ pip install mistune==2.0.0rc1
3636
```
3737

3838
## Overview

Diff for: mistune/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ def markdown(text, escape=True, renderer=None, plugins=None):
5858
'html', 'create_markdown', 'markdown',
5959
]
6060

61-
__version__ = '2.0.0a6'
61+
__version__ = '2.0.0rc1'

Diff for: setup.cfg

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[metadata]
2+
name = mistune
3+
long_description = file: README.rst
4+
long_description_content_type = text/x-rst
5+
16
[wheel]
27
universal = 1
38

Diff for: setup.py

-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,13 @@
44
from setuptools import setup
55

66

7-
def fread(filepath):
8-
with open(filepath, 'r') as f:
9-
return f.read()
10-
11-
127
setup(
138
name='mistune',
149
version=mistune.__version__,
1510
url='https://github.com/lepture/mistune',
1611
author='Hsiaoming Yang',
1712
author_email='[email protected]',
1813
description='A sane Markdown parser with useful plugins and renderers',
19-
long_description=fread('README.rst'),
2014
license='BSD',
2115
packages=[
2216
'mistune', 'mistune.plugins', 'mistune.directives'

0 commit comments

Comments
 (0)