diff --git a/flask_restless/__init__.py b/flask_restless/__init__.py index 280bc618..dc47b84a 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.15.0-dev' +__version__ = '0.15.0' # make the following names available as part of the public API from .manager import APIManager diff --git a/setup.py b/setup.py index d82beffe..f1e1fd76 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,6 @@ test_suite='nose.collector', tests_require=['nose'], url='http://github.com/jfinkels/flask-restless', - version='0.15.0-dev', + version='0.15.0', zip_safe=False )