Skip to content

Commit e13511e

Browse files
committed
🚀 RELEASE: v4.1.0
1 parent 6170010 commit e13511e

6 files changed

Lines changed: 28 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
Changelog
22
=========
33

4-
Unreleased
4+
4.1.0
55
----------
66

7+
* Added LOCALIZE_MENU_ITEMS setting for i18n locale-aware menus (fixes [#242](https://github.com/jazzband/wagtailmenus/issues/242)).
78
* Added testing for Wagtail 7.4 (LTS).
89
* Removed support for Wagtail 6.3 LTS, 7.1 and 7.2 (end of life).
910
* Removed support for Django 5.1 (end of life).

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ This is a [Jazzband](https://jazzband.co/) project. By contributing you agree to
3636
* Daniel Kirkham (dkirkham)
3737
* Nick Moreton (nickmoreton)
3838
* GokhanKabar
39+
* Francesco Pennica (fpennica)
3940

4041
## Translators
4142

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ wagtailmenus is an open-source extension for `Wagtail CMS
77

88
The current version is tested for compatibility with the following:
99

10-
- Wagtail versions 6.5 to 7.2
11-
- Django versions 4.2 and >= 5.0
10+
- Wagtail versions 7.0, 7.3 and 7.4
11+
- Django versions 4.2, 5.2 and 6.0
1212
- Python versions 3.10 to 3.14
1313

1414
To find out more about what wagtailmenus does and why, see :doc:`overview`

docs/source/releases/4.1.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
===============================================
2+
Wagtailmenus 4.0.6 release notes (14.02.2026)
3+
===============================================
4+
5+
.. contents::
6+
:local:
7+
:depth: 1
8+
9+
10+
What's new?
11+
===========
12+
13+
Setting `WAGTAIL_I18N_ENABLED` to `True` in your Wagtail settings will now enable locale-aware menu items. This means that their titles and URLs will automatically reflect the visitor's language without any additional configuration.
14+
15+
Minor changes & bug fixes
16+
=========================
17+
18+
* Added testing for Wagtail 7.4 (LTS).
19+
* Removed support for Wagtail 6.3 LTS, 7.1 and 7.2 (end of life).
20+
* Removed support for Django 5.1 (end of life).
21+
* Raised minimum Wagtail version to 7.0.

docs/source/releases/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release notes
55
.. toctree::
66
:maxdepth: 1
77

8+
4.1
89
4.0.7
910
4.0.6
1011
4.0.5

wagtailmenus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# major.minor.patch.release.number
44
# release must be one of alpha, beta, rc, or final
5-
VERSION = (4, 0, 7, "final", 0)
5+
VERSION = (4, 1, 0, "final", 0)
66
__version__ = get_version(VERSION)
77
stable_branch_name = get_stable_branch_name(VERSION)
88

0 commit comments

Comments
 (0)