Bump version 0.1.9 => 0.2.0

New features and bugfixes such as:
- Python 3.3 deprecation and forward compatibility
- Feedparser upgrades
- Readme clarifications
- New stopwords for Greek
This commit is contained in:
codelucas 2017-06-04 02:46:27 -07:00
parent 5e51ee2bf5
commit e54ee8a9db
2 changed files with 2 additions and 2 deletions

View file

@ -7,5 +7,5 @@ __author__ = 'Lucas Ou-Yang'
__license__ = 'MIT'
__copyright__ = 'Copyright 2014, Lucas Ou-Yang'
version_info = (0, 1, 9)
version_info = (0, 2, 0)
__version__ = ".".join(map(str, version_info))

View file

@ -34,7 +34,7 @@ with codecs.open('README.rst', 'r', 'utf-8') as f:
setup(
name='newspaper3k',
version='0.1.9',
version='0.2.0',
description='Simplified python article discovery & extraction.',
long_description=readme,
author='Lucas Ou-Yang',