From e4b7982b976acc63c0662bad4d55337939bd2444 Mon Sep 17 00:00:00 2001 From: Sage Abdullah Date: Wed, 23 Oct 2024 16:02:20 +0100 Subject: [PATCH] Release v2.1.0 --- CHANGELOG.md | 4 ++-- wagtail_modeladmin/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0379357..ef2f1bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [2.1.0] - 2024-10-23 ### Added @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed -- Drop Python 3.8 from the testing matrix +- Drop Python 3.8 from the testing matrix. The package can still be installed on Python 3.8 to account for Wagtail 5.2 support, but expect this to change when support for Wagtail 5.2 ends in February 2025. ## [2.0.0] - 2024-02-05 diff --git a/wagtail_modeladmin/__init__.py b/wagtail_modeladmin/__init__.py index 7dd08b2..e43e57b 100644 --- a/wagtail_modeladmin/__init__.py +++ b/wagtail_modeladmin/__init__.py @@ -1,2 +1,2 @@ -VERSION = (2, 0, 0) +VERSION = (2, 1, 0) __version__ = ".".join(map(str, VERSION))