diff --git a/CHANGELOG.md b/CHANGELOG.md index 84e20a4..1f06a3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v0.7-2019-01-07 + +## fix + +- Fix Markdown desired version, thanks @fabiomontefuscolo + + # v0.5-2017-12-13 ## Added diff --git a/mdtree/__init__.py b/mdtree/__init__.py index 4a4c20a..2c75efc 100644 --- a/mdtree/__init__.py +++ b/mdtree/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python # coding=utf-8 -__version__ = "0.6" +__version__ = "0.7" __desc__ = "Convert markdown to html with TOC(table of contents) https://github.com/menduo/mdtree" from mdtree.main import MdTree, convert_from_file diff --git a/setup.py b/setup.py index 7234c84..4bdc3d6 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 from setuptools import setup -__version__ = "0.6" +__version__ = "0.7" __desc__ = "Convert markdown to html with TOC(table of contents) https://github.com/menduo/mdtree" repo_url = "https://github.com/menduo/mdtree" @@ -39,6 +39,8 @@ "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Internet :: WWW/HTTP :: Site Management",