diff --git a/podgen/version.py b/podgen/version.py index 067b60e..11231ea 100644 --- a/podgen/version.py +++ b/podgen/version.py @@ -11,7 +11,7 @@ """ 'Version of python-podgen represented as tuple' -version = (1, 0, "0b5") +version = (1, 0, 0) 'Version of python-podgen represented as string' diff --git a/setup.py b/setup.py index 1ce8740..685d051 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ name = 'podgen', packages = ['podgen'], # Remember to update the version in podgen.version, too! - version = '1.0.0b5', + version = '1.0.0', description = 'Generating podcasts with Python should be easy!', author = 'Thorben W. S. Dahl', author_email = 'thorben@sjostrom.no', @@ -17,7 +17,7 @@ install_requires = ['lxml', 'dateutils', 'future', 'pytz', 'tinytag', 'requests'], classifiers = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: Science/Research',