Skip to content
This repository was archived by the owner on Mar 26, 2022. It is now read-only.

Commit e5d2439

Browse files
authored
Merge pull request #144 from rtfd/release-0.9.0
🔖 release 0.9.0
2 parents 1b68ed8 + 5a64008 commit e5d2439

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.9.0 (2019-05-02)
2+
- The CommonMark spec has been updated to 0.29. Completed by @iamahuman.
3+
14
## 0.8.1 (2018-09-06)
25
- Removed `CommonMark` symlink. So, as of this version, you need to replace all instances of `CommonMark` with `commonmark` in your code.
36

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ stable we will release the first ``1.0`` version and attempt to keep up
1010
to date with changes in ``commonmark.js``.
1111

1212
CommonMark-py is tested against the CommonMark spec with Python versions
13-
2.6, 2.7, 3.3, 3.4, 3.5, 3.6, and 3.7.
13+
2.7, 3.4, 3.5, 3.6, and 3.7.
1414

15-
**Current version:** 0.8.1
15+
**Current version:** 0.9.0
1616

1717
|Pypi Link| |Build Status| |Doc Link|
1818

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '0.8.1'
62+
version = '0.9.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.8.1'
64+
release = '0.9.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ def run(self):
2323
tests_require = [
2424
'flake8==3.5.0',
2525
'hypothesis==3.55.3',
26-
# For python 2.6
27-
'hypothesislegacysupport',
2826
]
2927

3028

@@ -36,7 +34,7 @@ def run(self):
3634
setup(
3735
name="commonmark",
3836
packages=find_packages(exclude=['tests']),
39-
version="0.8.1",
37+
version="0.9.0",
4038
license="BSD-3-Clause",
4139
description="Python parser for the CommonMark Markdown spec",
4240
long_description=long_description,

0 commit comments

Comments
 (0)