summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2015-04-12 11:22:41 -0400
committerVal Neekman <val@neekware.com>2015-04-12 11:22:41 -0400
commitcf9179187f4a14031cf29b58c162bfb58afb7bfe (patch)
tree9fd2c45cfabf70735a95b3e4e908036283589103
parentf917cbd8ebab1f114b6d2c51c64fddb35f6c04cf (diff)
downloadpython-slugify-1.0.1.tar.gz
promoting to stable1.0.1
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xsetup.py2
-rw-r--r--slugify/__init__.py2
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:
diff --git a/setup.py b/setup.py
index 7d62750..543fb50 100755
--- a/setup.py
+++ b/setup.py
@@ -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'