Skip to content

Commit 86baa97

Browse files
committed
Bumped version to 4.0.6
1 parent 3bbec2d commit 86baa97

File tree

7 files changed

+32
-4
lines changed

7 files changed

+32
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
4.0.6 (14.02.2026)
5+
----------
6+
7+
* Fix TypeError with Django 6.0+ [#522](https://github.com/jazzband/wagtailmenus/pull/522).
8+
* Add testing for Django 6.0
9+
410
4.0.5 (29.11.2025)
511
----------
612

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ This is a [Jazzband](https://jazzband.co/) project. By contributing you agree to
3535
* Ben Froelich-Leon (benfroelich)
3636
* Daniel Kirkham (dkirkham)
3737
* Nick Moreton (nickmoreton)
38+
* GokhanKabar
3839

3940
## Translators
4041

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ 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 >= 5.2
10+
- Wagtail versions 6.5 to 7.2
1111
- Django versions 4.2 and >= 5.0
12-
- Python versions 3.9 to 3.13
12+
- Python versions 3.10 to 3.14
1313

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

docs/source/releases/4.0.6.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
There are no new major features in this release.
14+
15+
Minor changes & bug fixes
16+
=========================
17+
18+
* Fix TypeError with Django 6.0+
19+
* Add testing for Django 6.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.0.6
89
4.0.5
910
4.0.4
1011
4.0.3

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ envlist =
99
wt70-dj{51,52}-py{310,311,312,313}
1010
wt72-dj{42}-py{310,311,312}
1111
wt72-dj{51,52}-py{310,311,312,313}
12-
wt72-dj52-py314
12+
wt72-dj{60}-py{312,313,314}
1313

1414
[gh-actions]
1515
python =
@@ -30,6 +30,7 @@ deps =
3030
dj42: Django>=4.2,<4.3
3131
dj51: Django>=5.1,<5.2
3232
dj52: Django>=5.2,<5.3
33+
dj60: Django>=6.0,<6.1
3334
wt63: wagtail>=6.3,<6.4
3435
wt70: wagtail>=7.0,<7.1
3536
wt72: wagtail>=7.2,<7.3

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, 5, "final", 0)
5+
VERSION = (4, 0, 6, "final", 0)
66
__version__ = get_version(VERSION)
77
stable_branch_name = get_stable_branch_name(VERSION)
88

0 commit comments

Comments
 (0)