Skip to content

Commit b68c9e2

Browse files
committed
bump version 0.7: Fix Markdown desired version, thanks @fabiomontefuscolo
1 parent db1c140 commit b68c9e2

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# v0.7-2019-01-07
2+
3+
## fix
4+
5+
- Fix Markdown desired version, thanks @fabiomontefuscolo
6+
7+
18
# v0.5-2017-12-13
29

310
## Added

mdtree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
22
# coding=utf-8
3-
__version__ = "0.6"
3+
__version__ = "0.7"
44
__desc__ = "Convert markdown to html with TOC(table of contents) https://github.com/menduo/mdtree"
55
from mdtree.main import MdTree, convert_from_file

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# encoding: utf-8
33
from setuptools import setup
4-
__version__ = "0.6"
4+
__version__ = "0.7"
55
__desc__ = "Convert markdown to html with TOC(table of contents) https://github.com/menduo/mdtree"
66

77
repo_url = "https://github.com/menduo/mdtree"
@@ -39,6 +39,8 @@
3939
"Programming Language :: Python :: 3.3",
4040
"Programming Language :: Python :: 3.4",
4141
"Programming Language :: Python :: 3.5",
42+
"Programming Language :: Python :: 3.6",
43+
"Programming Language :: Python :: 3.7",
4244
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
4345
"Topic :: Software Development :: Libraries :: Python Modules",
4446
"Topic :: Internet :: WWW/HTTP :: Site Management",

0 commit comments

Comments
 (0)