From 611b1102e5181c83f6c32c516e4eea56e904552b Mon Sep 17 00:00:00 2001 From: Lars Holm Nielsen Date: Tue, 12 Dec 2017 11:17:19 +0100 Subject: [PATCH] release: v0.7.0 --- .kwalitee.yml | 10 ---------- CHANGES.rst | 8 ++++++++ LICENSE | 4 ++-- RELEASE-NOTES.rst | 40 ---------------------------------------- flask_menu/version.py | 2 +- 5 files changed, 11 insertions(+), 53 deletions(-) delete mode 100644 .kwalitee.yml delete mode 100644 RELEASE-NOTES.rst diff --git a/.kwalitee.yml b/.kwalitee.yml deleted file mode 100644 index 24a47ca..0000000 --- a/.kwalitee.yml +++ /dev/null @@ -1,10 +0,0 @@ -components: -- README -- docker -- docs -- kwalitee -- menu -- setup -- tests -- travis -- version diff --git a/CHANGES.rst b/CHANGES.rst index c70ee20..73e7e86 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changes ======= +Version 0.7.0 (released 2017-12-12) +----------------------------------- + +- Uses whole segment of the URL instead of a prefix to determine active menu + item. Currently the menu item is marked as active when there is a prefix + match on the URL. This creates situations where multiple different menu + items appear to be active just because they share a prefix. (#62) + Version 0.6.0 (released 2017-08-03) ----------------------------------- diff --git a/LICENSE b/LICENSE index 9df64f1..3e28b75 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ Flask-Menu is free software; you can redistribute it and/or modify it under the terms of the Revised BSD License quoted below. -Copyright (C) 2013, 2014 CERN. +Copyright (C) 2013-2017 CERN All rights reserved. @@ -35,4 +35,4 @@ DAMAGE. In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an -Intergovernmental Organization or submit itself to any jurisdiction. \ No newline at end of file +Intergovernmental Organization or submit itself to any jurisdiction. diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst deleted file mode 100644 index c112f65..0000000 --- a/RELEASE-NOTES.rst +++ /dev/null @@ -1,40 +0,0 @@ -=================== - Flask-Menu v0.6.0 -=================== - -Flask-Menu v0.6.0 was released on August 3, 2017. - -About ------ - -Flask-Menu is a Flask extension that adds support for generating -menus. - -Improved features ------------------ - -- Improves tests for checking when an item is active. - -Installation ------------- - - $ pip install Flask-Menu==0.6.0 - -Documentation -------------- - - https://flask-menu.readthedocs.io/ - -Homepage --------- - - https://github.com/inveniosoftware/flask-menu - -Happy hacking and thanks for flying Flask-Menu. - -| Invenio Development Team -| Email: info@inveniosoftware.org -| IRC: #invenio on irc.freenode.net -| Twitter: https://twitter.com/inveniosoftware -| GitHub: https://github.com/inveniosoftware -| URL: http://inveniosoftware.org diff --git a/flask_menu/version.py b/flask_menu/version.py index 9c99623..8556a9d 100644 --- a/flask_menu/version.py +++ b/flask_menu/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.6.0" +__version__ = "0.7.0"