From 1bd8c75f4f2b81126c4721d838a34a1ab22ecf58 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Mon, 13 Jun 2022 16:47:07 +0100 Subject: [PATCH] build: Release 3.2 (#461) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add missing changelog entry * Bump version: 3.1.0 → 3.1.1 * Bump version: 3.1.1 → 3.2.0 --- CHANGELOG.rst | 11 ++++++++--- djangocms_admin_style/__init__.py | 2 +- setup.cfg | 12 ++++++------ setup.py | 2 +- 4 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ced59f42..72ce0a64 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,18 +5,23 @@ Changelog unreleased ========== +3.2.0 (2022-06-13) +================== + +* Added configurable dark mode (color scheme) + 3.1.1 (2022-04-13) -================ +================== * Fix: Missing drop shadows and unreadable button coloring on hover 3.1.0 (2022-03-27) -================ +================== * Add dark mode depending on system settings 3.0.0 (2022-01-22) -================ +================== * Drop support for python 3.5, 3.6 and django 3.0 * Increase calendar box width to show Sundays diff --git a/djangocms_admin_style/__init__.py b/djangocms_admin_style/__init__.py index 726691bc..573cf70b 100644 --- a/djangocms_admin_style/__init__.py +++ b/djangocms_admin_style/__init__.py @@ -1 +1 @@ -__version__ = '3.1.1' +__version__ = '3.2.0' diff --git a/setup.cfg b/setup.cfg index 82e7b828..130d3f26 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.1 +current_version = 3.2.0 commit = True tag = False @@ -12,19 +12,19 @@ search = __version__ = '{current_version}' replace = __version__ = '{new_version}' [bumpversion:file:CHANGELOG.rst] -search = +search = unreleased ========== -replace = +replace = unreleased ========== - + {new_version} ({utcnow:%%Y-%%m-%%d}) - ================ + ================== [flake8] max-line-length = 119 -exclude = +exclude = *.egg-info, .eggs, .env, diff --git a/setup.py b/setup.py index 5d6841d9..27512c64 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( name='djangocms-admin-style', - version='3.1.1', + version='3.2.0', author='Divio AG', author_email='info@divio.ch', maintainer='Django CMS Association and contributors',