diff options
| -rw-r--r-- | docs/conf.py | 2 | ||||
| -rw-r--r-- | setup.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 834664f..7c5d833 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ copyright = u'2013, Django Debug Toolbar developers and contributors' # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0b' +release = '1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='django-debug-toolbar', - version='1.0b', + version='1.0', description='A configurable set of panels that display various debug ' 'information about the current request/response.', long_description=open('README.rst').read(), @@ -19,7 +19,7 @@ setup( include_package_data=True, zip_safe=False, # because we're including static files classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', |
