diff options
| -rw-r--r-- | CHANGELOG.md | 6 | ||||
| -rwxr-xr-x | setup.py | 2 | ||||
| -rw-r--r-- | slugify/__init__.py | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a806c8..905d084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.0.1 + +Enhancement: + + - Promoting to production grade + ## 0.1.1 Enhancement: @@ -17,7 +17,7 @@ author_email = 'info@neekware.com' license = 'BSD' install_requires = ['Unidecode>=0.04.16'] classifiers = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: POSIX', diff --git a/slugify/__init__.py b/slugify/__init__.py index 08f721a..70100d9 100644 --- a/slugify/__init__.py +++ b/slugify/__init__.py @@ -3,4 +3,4 @@ from .slugify import * __author__ = 'Val Neekman @ Neekware Inc. [@vneekman]' __description__ = 'A Python slugify application that also handles Unicode' -__version__ = '0.1.1' +__version__ = '1.0.1' |
