diff --git a/CHANGES b/CHANGES index f276385..1554fd8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,16 @@ Changes ======= +Version 0.2.0 (released 2015-08-17) + +- Adds support for creating Celery applications with Flask-AppFactory. + +- Adds support for using a custom Flask application class. + +- Fixes minor issues with configuration registry loading order + +- Increases test coverage to 100%. + Version 0.1.0 (released 2015-08-03) - Initial public release. diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index bb01989..478fc37 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,8 +1,8 @@ ========================= - Flask-AppFactory v0.1.0 + Flask-AppFactory v0.2.0 ========================= -Flask-AppFactory v0.1.0 was released on August 3, 2015. +Flask-AppFactory v0.2.0 was released on August 17, 2015. About ----- @@ -15,10 +15,21 @@ Installation $ pip install flask-appfactory +What's new +---------- + +- Adds support for creating Celery applications with Flask-AppFactory. + +- Adds support for using a custom Flask application class. + +- Fixes minor issues with configuration registry loading order + +- Increases test coverage to 100%. + Documentation ------------- - http://flask-appfactory.readthedocs.org/en/v0.1.0 + http://flask-appfactory.readthedocs.org/en/v0.2.0 Homepage -------- diff --git a/flask_appfactory/version.py b/flask_appfactory/version.py index e36dbed..313aeed 100644 --- a/flask_appfactory/version.py +++ b/flask_appfactory/version.py @@ -16,4 +16,4 @@ # Do not change the format of this next line. Doing so risks breaking # setup.py and docs/conf.py -__version__ = "0.1.1.dev20150803" +__version__ = "0.2.0"