Skip to content

Commit 73d758c

Browse files
🔖 Bump version to 3.1.1 and update changelog
1 parent 8daa20e commit 73d758c

File tree

7 files changed

+16
-5
lines changed

7 files changed

+16
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 3.1.0
4+
current_version = 3.1.1
55

66
[bumpversion:file:setup.cfg]
77

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Change history
33
==============
44

5+
3.1.1 (2024-02-29)
6+
==================
7+
8+
Bugfix release
9+
10+
* Fixed N + 1 query regression introduced in 3.1.0
11+
* Fixed typos in README
12+
* Formatted the code with latest black version
13+
* Added missing Dutch translations
14+
515
3.1.0 (2023-07-14)
616
==================
717

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include LICENSE
44
recursive-include django_admin_index *.html
55
recursive-include django_admin_index *.txt
66
recursive-include django_admin_index *.po
7+
recursive-include django_admin_index *.mo
78
recursive-include django_admin_index/static *.css
89
recursive-include django_admin_index/static *.css.map
910
recursive-include scss *.scss

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Admin Index for Django
33
======================
44

5-
:Version: 3.1.0
5+
:Version: 3.1.1
66
:Download: https://pypi.python.org/pypi/django-admin-index
77
:Source: https://github.com/maykinmedia/django-admin-index
88
:Keywords: django, admin, dashboard

django_admin_index/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# :copyright: (c) 2017, Maykin Media BV.
22
# All rights reserved.
33
# :license: BSD (3 Clause), see LICENSE for more details.
4-
__version__ = "3.1.0"
4+
__version__ = "3.1.1"
55
__author__ = "Joeri Bekker"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-admin-index",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "====================== Admin Index for Django ======================",
55
"directories": {
66
"test": "tests"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
33
[metadata]
44
name = django-admin-index
5-
version = 3.1.0
5+
version = 3.1.1
66
description = Admin index for Django
77
long_description = file: README.rst
88
url = https://github.com/maykinmedia/django-admin-index

0 commit comments

Comments
 (0)