diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd20a96..4453fb96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,18 @@ Changelog ========= +3.1.3 (15.10.2022) +------------------ + +* Added support for Wagtail 4.0. +* Added support for Django 4.1. +* Updated travis/tox test settings to test against Wagtail 4.0 and Django 4.1. + 3.1.2 (17.06.2022) ------------------ * Added support for Wagtail >3.0. -* Updated travis/tox test settings to test against Wagtail 3.0. +* Updated Travis/tox test settings to test against Wagtail 3.0. * Fix: [#421](https://github.com/jazzband/wagtailmenus/issues/421), which prevented creating or editing menus in wagtail 3.0. 3.1.1 (25.04.2022) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 32526667..731d2912 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -28,6 +28,8 @@ This is a [Jazzband](https://jazzband.co/) project. By contributing you agree to * Fernando Cordeiro (MrCordeiro) twitter.com/brauhaus * Abdulmajeed Isa (amajai) +* Jon Parker (jnpkr) +* Arnar Tumi Þorsteinsson (ArnarTumi) ## Translators diff --git a/README.rst b/README.rst index 0795a82a..fe5364a1 100644 --- a/README.rst +++ b/README.rst @@ -31,9 +31,9 @@ wagtailmenus is an extension for Torchbox's `Wagtail CMS 2.15, 3.0, and 4.0 +- Django versions 3.0, 4.0, and 4.1 +- Python versions 3.7 to 3.10 .. image:: https://raw.githubusercontent.com/jazzband/wagtailmenus/master/docs/source/_static/images/repeating-item.png @@ -53,4 +53,6 @@ For everything you need to get up and running with wagtailmenus, `view the offic Contributing ============ +Instructions on how to contribute to can be house `here `_. + As we are members of a `JazzBand project `_, `wagtailmenus` contributors should adhere to the `Contributor Code of Conduct `_. diff --git a/docs/source/releases/3.1.2.rst b/docs/source/releases/3.1.2.rst new file mode 100644 index 00000000..b7d4e6ba --- /dev/null +++ b/docs/source/releases/3.1.2.rst @@ -0,0 +1,22 @@ +=============================================== +Wagtailmenus 3.1.2 release notes (17.06.2022) +=============================================== + +.. contents:: + :local: + :depth: 1 + + +What's new? +=========== + +There are no new major features in this release. + + +Minor changes & bug fixes +========================= + +* Added support for Wagtail >3.0. +* Updated Travis/tox test settings to test against Wagtail 3.0. +* Fixed bug `#421 `_, which prevented creating or editing menus in wagtail 3.0. + diff --git a/docs/source/releases/3.1.3.rst b/docs/source/releases/3.1.3.rst new file mode 100644 index 00000000..2d00c7e6 --- /dev/null +++ b/docs/source/releases/3.1.3.rst @@ -0,0 +1,20 @@ +=============================================== +Wagtailmenus 3.1.3 release notes (15.10.2022) +=============================================== + +.. contents:: + :local: + :depth: 1 + + +What's new? +=========== + +There are no new major features in this release. + + +Minor changes & bug fixes +========================= + +* Added support for Wagtail 4.0. +* Added support for Django 4.1. diff --git a/docs/source/releases/index.rst b/docs/source/releases/index.rst index c6358e4f..4e20eb09 100644 --- a/docs/source/releases/index.rst +++ b/docs/source/releases/index.rst @@ -5,6 +5,7 @@ Release notes .. toctree:: :maxdepth: 1 + 3.1.3 3.1.2 3.1.1 3.1 diff --git a/docs/source/settings_reference.rst b/docs/source/settings_reference.rst index c8cb35c6..813b4fdb 100644 --- a/docs/source/settings_reference.rst +++ b/docs/source/settings_reference.rst @@ -371,7 +371,7 @@ Default value: ``'title'`` 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. .. NOTE:: - 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. + 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. .. _SECTION_ROOT_DEPTH: diff --git a/wagtailmenus/__init__.py b/wagtailmenus/__init__.py index dc1c5e21..bf5c86bf 100644 --- a/wagtailmenus/__init__.py +++ b/wagtailmenus/__init__.py @@ -2,7 +2,7 @@ # major.minor.patch.release.number # release must be one of alpha, beta, rc, or final -VERSION = (3, 1, 2, "final", 0) +VERSION = (3, 1, 3, "final", 0) __version__ = get_version(VERSION) stable_branch_name = get_stable_branch_name(VERSION)