From d6db0efc3d425dd58a61c8e04ed9d103b3d72954 Mon Sep 17 00:00:00 2001 From: sax Date: Tue, 21 Nov 2023 16:40:44 +0100 Subject: [PATCH] bump version --- .bumpversion.cfg | 2 +- CHANGES | 2 +- src/adminactions/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2a3118e..5f8196e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.0 +current_version = 2.3.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} commit = False diff --git a/CHANGES b/CHANGES index 2f06343..7aa0c18 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -Release 2.3 (dev) +Release 2.3 =========== * Add support to foreignkeys to bulk updates ( @see https://github.com/saxix/django-adminactions/pull/224/files) diff --git a/src/adminactions/__init__.py b/src/adminactions/__init__.py index 9a62606..791f2d7 100644 --- a/src/adminactions/__init__.py +++ b/src/adminactions/__init__.py @@ -1,3 +1,3 @@ -VERSION = __version__ = "2.2.0" +VERSION = __version__ = "2.3.0" NAME = "django-adminactions" default_app_config = "adminactions.apps.Config"