diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 91a3036..78bda89 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,3 +1,8 @@ +v0.2.3 +------ + +Development Status changed to "Development Status :: 5 - Production/Stable". + v0.2.2 ------ diff --git a/README.markdown b/README.markdown index 930d0ca..d4a3462 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,4 @@ -# [Django Macros URL](https://github.com/phpdude/django-macros-url/) v0.2.2 - Routing must be simple as possible +# [Django Macros URL](https://github.com/phpdude/django-macros-url/) v0.2.3 - Routing must be simple as possible Django Macros URL makes it easy to write (and read) URL patterns in your Django applications by using macros. diff --git a/macrosurl/__init__.py b/macrosurl/__init__.py index c713adb..ee3959e 100644 --- a/macrosurl/__init__.py +++ b/macrosurl/__init__.py @@ -1,6 +1,6 @@ import re -VERSION = (0, 2, 2) +VERSION = (0, 2, 3) _macros_library = { 'id': r'\d+', diff --git a/setup.py b/setup.py index 44ebfe3..4836096 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read(filename): test_suite='tests', long_description=read("README.markdown"), classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Environment :: Plugins', 'Framework :: Django',