Skip to content

Commit

Permalink
Version bump 2.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Feb 16, 2021
1 parent eb32fe5 commit d881947
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Using old Mistune? Checkout docs: <https://mistune.readthedocs.io/en/v0.8.4/>
To install v2 of mistune:

```
$ pip install mistune==2.0.0a6
$ pip install mistune==2.0.0rc1
```

## Overview
Expand Down
2 changes: 1 addition & 1 deletion mistune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ def markdown(text, escape=True, renderer=None, plugins=None):
'html', 'create_markdown', 'markdown',
]

__version__ = '2.0.0a6'
__version__ = '2.0.0rc1'
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[metadata]
name = mistune
long_description = file: README.rst
long_description_content_type = text/x-rst

[wheel]
universal = 1

Expand Down
6 changes: 0 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,13 @@
from setuptools import setup


def fread(filepath):
with open(filepath, 'r') as f:
return f.read()


setup(
name='mistune',
version=mistune.__version__,
url='https://github.com/lepture/mistune',
author='Hsiaoming Yang',
author_email='me@lepture.com',
description='A sane Markdown parser with useful plugins and renderers',
long_description=fread('README.rst'),
license='BSD',
packages=[
'mistune', 'mistune.plugins', 'mistune.directives'
Expand Down

0 comments on commit d881947

Please sign in to comment.