Skip to content

Commit

Permalink
📚 bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
miyuchina committed Aug 7, 2017
1 parent 1a7b27e commit f0f9eeb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mistletoe/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def interactive():
Parse user input, dump to stdout, rinse and repeat.
Python REPL style.
"""
print('mistletoe [version 0.1.1 alpha] (interactive)')
print('mistletoe [version 0.2] (interactive)')
print('Type Ctrl-D to complete input, or Ctrl-C to exit.')
while True: # eval loop
try:
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='mistletoe',
version='0.1.1',
version='0.2',
description='A fast, extensible Markdown parser in pure Python.',
url='https://github.com/miyuchina/mistletoe',
author='Mi Yu',
Expand All @@ -13,6 +13,9 @@
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
Expand All @@ -21,5 +24,5 @@
'Topic :: Text Processing :: Markup',
],
keywords='markdown lexer parser development',
python_requires='~=3.5',
python_requires='~=3.3',
zip_safe=False)

0 comments on commit f0f9eeb

Please sign in to comment.