From 0767f07c7453c92bfbea1f6ec3f184bfbd996555 Mon Sep 17 00:00:00 2001 From: Val Neekman Date: Wed, 24 Apr 2013 11:42:16 -0400 Subject: [PATCH] changed status to stable --- README.md | 4 ++++ setup.py | 2 +- uuslug/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a2be0d..365cec3 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,10 @@ To run the tests against the current environment: Changelog ========= +1.0.0 +----- +* Changed status to Production / Stable + 0.2.0 ----- * Added an option to choose a non-dash separator diff --git a/setup.py b/setup.py index 61acddc..bef3d45 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ author_email = 'info@neekware.com' license = 'BSD' install_requires = ['python-slugify>=0.0.4'] classifiers = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', diff --git a/uuslug/__init__.py b/uuslug/__init__.py index f78feef..d8ccc24 100644 --- a/uuslug/__init__.py +++ b/uuslug/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.2.0' +__version__ = '1.0.0' from django.utils.encoding import smart_unicode from slugify import slugify as pyslugify