Skip to content

Commit

Permalink
Prep for v2.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Babic committed Oct 27, 2017
1 parent d2ab129 commit d3cce3e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Changelog
=========

2.X.X (XX.XX.XXXX) IN DEVELOPMENT
---------------------------------
2.4.2 (27.10.2017)
------------------

* Fixed a bug that was causing Django to create new migrations for wagtailmenus
after changing Django's LANGUAGE_CODE setting for a project. Thanks to
@philippbosch from A Color Bright for the fix.


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

This is a maintenence release to fix a bug that was resulting in Django creating additional migrations for the app when running the ``makemigrations`` command after changing the project's default language to something other than "en".

Thanks to @philippbosch from A Color Bright for submitting the fix.
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.2
2.4.1
2.4.0
2.3.2
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, 1, 'final', 0)
VERSION = (2, 4, 2, 'final', 0)
__version__ = get_version(VERSION)
stable_branch_name = get_stable_branch_name(VERSION)

Expand Down

0 comments on commit d3cce3e

Please sign in to comment.