From 6cf2ae032736f4e00582c09df0c068e996cb0c07 Mon Sep 17 00:00:00 2001 From: bart-maykin Date: Wed, 11 Dec 2024 16:30:43 +0100 Subject: [PATCH] :bookmark: Bump version to 3.2.0 and update changelog --- CHANGELOG.rst | 9 +++++++++ README.rst | 2 +- django_admin_index/locale/nl/LC_MESSAGES/django.po | 2 +- package-lock.json | 4 ++-- package.json | 2 +- pyproject.toml | 4 ++-- 6 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0116a7e..50c6f3c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ Change history ============== +3.2.0 (2024-12-11) +================== + +**Changes** + +* Add support for Python 3.12 +* Dropped support for Python < 3.10 and Django < 4.2 +* Changed App Links from `change` to `view` in admin index + 3.1.1 (2024-02-29) ================== diff --git a/README.rst b/README.rst index 78f0ec2..decd0a2 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Admin Index for Django ====================== -:Version: 3.1.1 +:Version: 3.2.0 :Download: https://pypi.org/project/django-admin-index/ :Source: https://github.com/maykinmedia/django-admin-index :Keywords: django, admin, dashboard diff --git a/django_admin_index/locale/nl/LC_MESSAGES/django.po b/django_admin_index/locale/nl/LC_MESSAGES/django.po index 52fe2e1..ac68c4f 100644 --- a/django_admin_index/locale/nl/LC_MESSAGES/django.po +++ b/django_admin_index/locale/nl/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.1.1\n" +"Project-Id-Version: 3.2.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-02-29 22:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/package-lock.json b/package-lock.json index 217e8eb..3416ae4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "django-admin-index", - "version": "3.1.1", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "django-admin-index", - "version": "3.1.1", + "version": "3.2.0", "license": "BSD-3-Clause", "devDependencies": { "@parcel/transformer-sass": "^2.3.2", diff --git a/package.json b/package.json index de2e9ed..7c9c7fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "django-admin-index", - "version": "3.1.1", + "version": "3.2.0", "description": "====================== Admin Index for Django ======================", "directories": { "test": "tests" diff --git a/pyproject.toml b/pyproject.toml index b9dd9b8..b626a6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-admin-index" -version = "3.1.1" +version = "3.2.0" description = "Admin index for Django" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -75,7 +75,7 @@ python_classes = ["test_*"] DJANGO_SETTINGS_MODULE = "tests.proj.settings" [tool.bumpversion] -current_version = "3.1.1" +current_version = "3.2.0" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},