Skip to content

Commit

Permalink
🚀 RELEASE 3.1.3: Update release notes (#434)
Browse files Browse the repository at this point in the history
* 🚀 RELEASE 3.1.3:  Updated release notes

* 🐛FIX: wrong version on docs/source/releases/3.1.3.rst
  • Loading branch information
MrCordeiro authored Oct 15, 2022
1 parent 256eb19 commit bd7d426
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ wagtailmenus is an extension for Torchbox's `Wagtail CMS <https://github.com/tor

The current version is tested for compatibility with the following:

- Wagtail versions 2.0 to 2.10
- Django versions 1.11, 2.0, 2.2 and 3.0
- Python versions 3.4 to 3.8
- Wagtail versions >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

Expand All @@ -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 <https://wagtailmenus.readthedocs.io/en/stable/contributing/index.html>`_.

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>`_.
22 changes: 22 additions & 0 deletions docs/source/releases/3.1.2.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/jazzband/wagtailmenus/issues/421>`_, which prevented creating or editing menus in wagtail 3.0.

20 changes: 20 additions & 0 deletions docs/source/releases/3.1.3.rst
Original file line number Diff line number Diff line change
@@ -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.
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

3.1.3
3.1.2
3.1.1
3.1
Expand Down
2 changes: 1 addition & 1 deletion docs/source/settings_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion wagtailmenus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit bd7d426

Please sign in to comment.