Skip to content

Commit

Permalink
Prep for 2.4.1 release
Browse files Browse the repository at this point in the history
- Update CHANGELOG
- Add release notes
- Bump version for pypi
  • Loading branch information
Andy Babic committed Sep 16, 2017
1 parent 4909dd1 commit d2ab129
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ Changelog
2.X.X (XX.XX.XXXX) IN DEVELOPMENT
---------------------------------


2.4.1 (16.09.2017)
------------------

* Added a missing migration to account for Meta class changes on MainMenuItem
and FlatMenuItem models


2.4.0 (04.08.2017)
------------------

Expand Down
7 changes: 7 additions & 0 deletions docs/source/releases/2.4.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
================================
Wagtailmenus 2.4.1 release notes
================================

This is a maintenence release to add a migration that should have been included in the previous release, but wasn't. Thanks to Stuart George (@stuartaccent) for reporting and submitting the fix.

If you experience problems after upgrading from 2.4.0 to 2.4.1 (due to your project creating it's own, conflicting migration), please try running ``pip uninstall wagtailmenus`` first, then install the latest version.
1 change: 1 addition & 0 deletions docs/source/releases/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release notes
.. toctree::
:maxdepth: 1

2.4.1
2.4.0
2.3.2
2.3.1
Expand Down
2 changes: 1 addition & 1 deletion wagtailmenus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# major.minor.patch.release.number
# release must be one of alpha, beta, rc, or final
VERSION = (2, 4, 0, 'final', 0)
VERSION = (2, 4, 1, 'final', 0)
__version__ = get_version(VERSION)
stable_branch_name = get_stable_branch_name(VERSION)

Expand Down

0 comments on commit d2ab129

Please sign in to comment.