diff --git a/CHANGES b/CHANGES index ac2fd6a..e8c2736 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,13 @@ Changes ======= +Version 0.3.0 (released 2015-03-17) + +- New method `has_active_child(recursive=True)` in `MenuEntryMixin`. (#25) +- Fixed documentation of blueprint example. (#21) +- Configuration for Docker and demo app. (#22 #29) +- Fixed template example and added code block types. (#14) + Version 0.2.0 (released 2014-11-04) - The Flask-Menu extension is now released under more permissive diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 4c2a62b..48ebb91 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,8 +1,8 @@ =============================== - Flask-Menu v0.2.0 is released + Flask-Menu v0.3.0 is released =============================== -Flask-Menu v0.2.0 was released on November 4, 2014. +Flask-Menu v0.3.0 was released on March 17, 2015. About ----- @@ -13,13 +13,10 @@ menus. What's new ---------- -- The Flask-Menu extension is now released under more permissive - Revised BSD License. (#12) -- New support for additional keyword arguments stored as `MenuItem` - attributes. (#19) -- Richer quick-start usage example. (#16) -- Support for Python 3.4. (#6) -- Documentation improvements. (#3) +- New method `has_active_child(recursive=True)` in `MenuEntryMixin`. (#25) +- Fixed documentation of blueprint example. (#21) +- Configuration for Docker and demo app. (#22 #29) +- Fixed template example and added code block types. (#14) Installation ------------ @@ -29,7 +26,7 @@ Installation Documentation ------------- - http://flask-menu.readthedocs.org/en/v0.2.0 + http://flask-menu.readthedocs.org/en/v0.3.0 Homepage -------- diff --git a/flask_menu/version.py b/flask_menu/version.py index 6cee47d..e41c44d 100644 --- a/flask_menu/version.py +++ b/flask_menu/version.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Flask-Menu -# Copyright (C) 2013, 2014 CERN. +# Copyright (C) 2013, 2014, 2015 CERN. # # Flask-Menu is free software; you can redistribute it and/or modify # it under the terms of the Revised BSD License; see LICENSE file for @@ -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.2.1.dev20141104" +__version__ = "0.3.0"