From 73d758c23c2ddd670749e6a343f31ef555461212 Mon Sep 17 00:00:00 2001 From: Sergei Maertens Date: Thu, 29 Feb 2024 22:25:37 +0100 Subject: [PATCH] :bookmark: Bump version to 3.1.1 and update changelog --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 10 ++++++++++ MANIFEST.in | 1 + README.rst | 2 +- django_admin_index/__init__.py | 2 +- package.json | 2 +- setup.cfg | 2 +- 7 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 73bf959..0afa5fe 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 3.1.0 +current_version = 3.1.1 [bumpversion:file:setup.cfg] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7eca320..0116a7e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ Change history ============== +3.1.1 (2024-02-29) +================== + +Bugfix release + +* Fixed N + 1 query regression introduced in 3.1.0 +* Fixed typos in README +* Formatted the code with latest black version +* Added missing Dutch translations + 3.1.0 (2023-07-14) ================== diff --git a/MANIFEST.in b/MANIFEST.in index efa59ad..0f6c114 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,6 +4,7 @@ include LICENSE recursive-include django_admin_index *.html recursive-include django_admin_index *.txt recursive-include django_admin_index *.po +recursive-include django_admin_index *.mo recursive-include django_admin_index/static *.css recursive-include django_admin_index/static *.css.map recursive-include scss *.scss diff --git a/README.rst b/README.rst index b2b9ca1..4b62d59 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Admin Index for Django ====================== -:Version: 3.1.0 +:Version: 3.1.1 :Download: https://pypi.python.org/pypi/django-admin-index :Source: https://github.com/maykinmedia/django-admin-index :Keywords: django, admin, dashboard diff --git a/django_admin_index/__init__.py b/django_admin_index/__init__.py index 3eb9eb7..becf695 100644 --- a/django_admin_index/__init__.py +++ b/django_admin_index/__init__.py @@ -1,5 +1,5 @@ # :copyright: (c) 2017, Maykin Media BV. # All rights reserved. # :license: BSD (3 Clause), see LICENSE for more details. -__version__ = "3.1.0" +__version__ = "3.1.1" __author__ = "Joeri Bekker" diff --git a/package.json b/package.json index 00e9f4a..de2e9ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "django-admin-index", - "version": "3.1.0", + "version": "3.1.1", "description": "====================== Admin Index for Django ======================", "directories": { "test": "tests" diff --git a/setup.cfg b/setup.cfg index 0402797..d2ea620 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ # see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files [metadata] name = django-admin-index -version = 3.1.0 +version = 3.1.1 description = Admin index for Django long_description = file: README.rst url = https://github.com/maykinmedia/django-admin-index