diff --git a/docs/changelog.txt b/docs/changelog.txt index 7f1d2ae..651f6c0 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -1,8 +1,8 @@ Changelog ========= -HEAD ----- +1.0 +--- - **BACKWARDS-INCOMPATIBLE** Stopped swallowing exceptions raised by rendering the template tag in production (``DEBUG = False``). This diff --git a/setup.py b/setup.py index 6f08357..1e62f31 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ setup( packages = find_packages(exclude=['tests', 'tests.*']), package_data = find_package_data('compressor', only_in_packages=False), classifiers = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', @@ -122,10 +122,10 @@ setup( 'Topic :: Internet :: WWW/HTTP', ], zip_safe = False, - install_requires=[ + install_requires = [ 'django-appconf >= 0.4', ], - setup_requires=[ + setup_requires = [ 'versiontools >= 1.6', ], )