diff --git a/README.md b/README.md index 7bc0f63..5e15a57 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,12 @@ available environment configurations (*: active): ## Changelog +### 0.1.3 + +#### Fixes + +- Fix package setup on Python 3. + ### 0.1.2 #### Fixes diff --git a/flask_run.py b/flask_run.py index 2df999b..2d1c9b9 100644 --- a/flask_run.py +++ b/flask_run.py @@ -3,7 +3,7 @@ from __future__ import print_function __all__ = 'run'.split() -__version__ = '0.1.2' +__version__ = '0.1.3' def run(create_app, config, description=None, args=None, namespace=None, options=None): """Parses commandline options, updates config, creates and runs the application.