Skip to content

Commit bd7d426

Browse files
authored
🚀 RELEASE 3.1.3: Update release notes (#434)
* 🚀 RELEASE 3.1.3: Updated release notes * 🐛FIX: wrong version on docs/source/releases/3.1.3.rst
1 parent 256eb19 commit bd7d426

8 files changed

Lines changed: 60 additions & 6 deletions

File tree

CHANGELOG.md

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

4+
3.1.3 (15.10.2022)
5+
------------------
6+
7+
* Added support for Wagtail 4.0.
8+
* Added support for Django 4.1.
9+
* Updated travis/tox test settings to test against Wagtail 4.0 and Django 4.1.
10+
411
3.1.2 (17.06.2022)
512
------------------
613

714
* Added support for Wagtail >3.0.
8-
* Updated travis/tox test settings to test against Wagtail 3.0.
15+
* Updated Travis/tox test settings to test against Wagtail 3.0.
916
* Fix: [#421](https://github.com/jazzband/wagtailmenus/issues/421), which prevented creating or editing menus in wagtail 3.0.
1017

1118
3.1.1 (25.04.2022)

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ This is a [Jazzband](https://jazzband.co/) project. By contributing you agree to
2828
* Fernando Cordeiro (MrCordeiro)
2929
twitter.com/brauhaus
3030
* Abdulmajeed Isa (amajai)
31+
* Jon Parker (jnpkr)
32+
* Arnar Tumi Þorsteinsson (ArnarTumi)
3133

3234
## Translators
3335

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ wagtailmenus is an extension for Torchbox's `Wagtail CMS <https://github.com/tor
3131

3232
The current version is tested for compatibility with the following:
3333

34-
- Wagtail versions 2.0 to 2.10
35-
- Django versions 1.11, 2.0, 2.2 and 3.0
36-
- Python versions 3.4 to 3.8
34+
- Wagtail versions >2.15, 3.0, and 4.0
35+
- Django versions 3.0, 4.0, and 4.1
36+
- Python versions 3.7 to 3.10
3737

3838
.. image:: https://raw.githubusercontent.com/jazzband/wagtailmenus/master/docs/source/_static/images/repeating-item.png
3939

@@ -53,4 +53,6 @@ For everything you need to get up and running with wagtailmenus, `view the offic
5353
Contributing
5454
============
5555

56+
Instructions on how to contribute to can be house `here <https://wagtailmenus.readthedocs.io/en/stable/contributing/index.html>`_.
57+
5658
As we are members of a `JazzBand project <https://jazzband.co/projects>`_, `wagtailmenus` contributors should adhere to the `Contributor Code of Conduct <https://jazzband.co/about/conduct>`_.

docs/source/releases/3.1.2.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
===============================================
2+
Wagtailmenus 3.1.2 release notes (17.06.2022)
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+
16+
Minor changes & bug fixes
17+
=========================
18+
19+
* Added support for Wagtail >3.0.
20+
* Updated Travis/tox test settings to test against Wagtail 3.0.
21+
* Fixed bug `#421 <https://github.com/jazzband/wagtailmenus/issues/421>`_, which prevented creating or editing menus in wagtail 3.0.
22+

docs/source/releases/3.1.3.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
===============================================
2+
Wagtailmenus 3.1.3 release notes (15.10.2022)
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+
16+
Minor changes & bug fixes
17+
=========================
18+
19+
* Added support for Wagtail 4.0.
20+
* Added support for Django 4.1.

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+
3.1.3
89
3.1.2
910
3.1.1
1011
3.1

docs/source/settings_reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ Default value: ``'title'``
371371
When preparing menu items for rendering, wagtailmenus looks for a field, attribute or property method on each page with this name to set a ``text`` attribute value, which is used in menu templates as the label for each item. The ``title`` field is used by default.
372372

373373
.. NOTE::
374-
wagtailmenus will only be able to access custom page fields or methods if 'specific' pages are being used (See :ref:`specific_pages`). If no attribute can be found matching the specified name, wagtailmenus will silently fall back to using the page's ``title`` field value.
374+
wagtailmenus will only be able to access custom page fields or methods if 'specific' pages are being used. If no attribute can be found matching the specified name, wagtailmenus will silently fall back to using the page's ``title`` field value.
375375

376376

377377
.. _SECTION_ROOT_DEPTH:

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

0 commit comments

Comments
 (0)