diff --git a/flask_restless/__init__.py b/flask_restless/__init__.py index 64506d5f..00995f7f 100644 --- a/flask_restless/__init__.py +++ b/flask_restless/__init__.py @@ -16,7 +16,7 @@ #: #: This should be the same as the version specified in the :file:`setup.py` #: file. -__version__ = '0.6-dev' +__version__ = '0.6' # make the following name available as part of the public API from .manager import APIManager diff --git a/setup.py b/setup.py index 4e60281d..7e97208d 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,6 @@ def run(self): test_suite='tests.suite', tests_require=['unittest2'], url='http://github.com/jfinkels/flask-restless', - version='0.6-dev', + version='0.6', zip_safe=False )