diff --git a/docs/conf.py b/docs/conf.py index 439b891..b3234ed 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.0b1' +release = '0.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 8fc68e9..2f01148 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='skosprovider', - version='0.3.0b1', + version='0.3.0', description='Abstraction layer for SKOS vocabularies.', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), @@ -33,7 +33,7 @@ license='MIT', zip_safe=False, classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', @@ -42,6 +42,7 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', ], test_suite='nose.collector' )