Skip to content

Commit

Permalink
Merge pull request #480 from jazzband/release
Browse files Browse the repository at this point in the history
🔖 (release): v4.0.0rc1
  • Loading branch information
schlich authored Feb 28, 2024
2 parents 3d8cd6a + 5768064 commit a729ddb
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 7 deletions.
34 changes: 31 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,39 @@
Changelog
=========

Unreleased
4.0.0rc1 (28.02.2024)
----------

* Added support for Wagtail 5.2 and Python 3.12.
* Dropped support for Django 4.0.
## What's Changed
* 🐛 FIX: Versions on docs index by @MrCordeiro in https://github.com/jazzband/wagtailmenus/pull/455
* Support/wagtail-50 by @katdom13 in https://github.com/jazzband/wagtailmenus/pull/457
* Fix/settings panel append by @benfroelich in https://github.com/jazzband/wagtailmenus/pull/441
* add indonesian translation by @kiraware in https://github.com/jazzband/wagtailmenus/pull/458
* Independent wagtail_modeladmin support for Wagtail 5.1 by @dkirkham in https://github.com/jazzband/wagtailmenus/pull/461
* Release prep/3.1.9 by @MrCordeiro in https://github.com/jazzband/wagtailmenus/pull/462
* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/jazzband/wagtailmenus/pull/463
* Wagtail 5.2 by @katdom13 in https://github.com/jazzband/wagtailmenus/pull/465
* Add Ukrainian translation by @yarickprih in https://github.com/jazzband/wagtailmenus/pull/466
* Dutch translation by @MaartenUreel in https://github.com/jazzband/wagtailmenus/pull/469
* Upgrade GitHub Actions by @cclauss in https://github.com/jazzband/wagtailmenus/pull/473
* 💥BREAKING: Migrate from ModelAdmin to Snippets by @dkirkham in https://github.com/jazzband/wagtailmenus/pull/472
* 👷: update gh actions by @schlich in https://github.com/jazzband/wagtailmenus/pull/477
* 👷: update set-output command by @schlich in https://github.com/jazzband/wagtailmenus/pull/478
* Update package and testing configurations by @dkirkham in https://github.com/jazzband/wagtailmenus/pull/481
* ModelAdmin to Snippets Documentation Update by @dkirkham in https://github.com/jazzband/wagtailmenus/pull/483
* Rename admin module by @dkirkham in https://github.com/jazzband/wagtailmenus/pull/482
* 🔒: add bandit code scanner by @schlich in https://github.com/jazzband/wagtailmenus/pull/479

## New Contributors
* @katdom13 made their first contribution in https://github.com/jazzband/wagtailmenus/pull/457
* @benfroelich made their first contribution in https://github.com/jazzband/wagtailmenus/pull/441
* @kiraware made their first contribution in https://github.com/jazzband/wagtailmenus/pull/458
* @dkirkham made their first contribution in https://github.com/jazzband/wagtailmenus/pull/461
* @yarickprih made their first contribution in https://github.com/jazzband/wagtailmenus/pull/466
* @MaartenUreel made their first contribution in https://github.com/jazzband/wagtailmenus/pull/469
* @cclauss made their first contribution in https://github.com/jazzband/wagtailmenus/pull/473

**Full Changelog**: https://github.com/jazzband/wagtailmenus/compare/v3.1.8...v4.0.0

3.1.9 (23.09.2023)
----------
Expand Down
10 changes: 7 additions & 3 deletions docs/source/releases/4.0.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
==============================
Wagtailmenus 4.0 release notes
==============================
===========================================
Wagtailmenus 4.0 release notes (28.02.2024)
===========================================

.. contents::
:local:
Expand Down Expand Up @@ -53,3 +53,7 @@ You will need to assign the newly customised admin classes to the following sett
- ``WAGTAILMENUS_FLAT_MENUS_ADMIN_CLASS``. This replaces ``WAGTAILMENUS_FLAT_MENUS_MODELADMIN_CLASS``

Note that ``MainMenuAdmin`` and ``FlatMenuAdmin`` are now in the ``wagtailmenus.menuadmin`` module, and that the ``wagtailmenus.modeladmin`` module has been removed.

Full Release Notes
==================
View the full release notes on GitHub or in CHANGELOG.md
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, 9, "final", 0)
VERSION = (4, 0, 0, "rc", 1)
__version__ = get_version(VERSION)
stable_branch_name = get_stable_branch_name(VERSION)

Expand Down

0 comments on commit a729ddb

Please sign in to comment.