Skip to content

Commit

Permalink
Merge pull request #154 from ababic/prep/2.1.4
Browse files Browse the repository at this point in the history
Prep for v2.1.4 bug fix release
  • Loading branch information
ababic authored Jul 21, 2017
2 parents 93813f3 + b3384f2 commit 30a873d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
packages=find_packages(),
license="MIT",
keywords="wagtail cms model utility",
download_url="https://github.com/rkhleics/wagtailmenus/tarball/v2.1.3",
download_url="https://github.com/rkhleics/wagtailmenus/tarball/v2.1.4",
url="https://github.com/rkhleics/wagtailmenus/tree/stable/2.1.x",
include_package_data=True,
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion wagtailmenus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import, unicode_literals

__version__ = '2.1.3'
__version__ = '2.1.4'

default_app_config = 'wagtailmenus.apps.WagtailMenusConfig'
app_settings = None
Expand Down
1 change: 1 addition & 0 deletions wagtailmenus/models/pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,5 @@ def get_repeated_menu_item(
if apply_active_classes and self == current_page:
active_class = app_settings.ACTIVE_CLASS
setattr(menuitem, 'active_class', active_class)
setattr(menuitem, 'has_children_in_menu', False)
return menuitem

0 comments on commit 30a873d

Please sign in to comment.