Skip to content

Commit 53fc00a

Browse files
committed
bump version
1 parent 8faf241 commit 53fc00a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.bumpversion.cfg

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[bumpversion]
2-
current_version = 2.5.0
3-
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<release>\d+)
4-
serialize = {major}.{minor}.{release}
2+
current_version = 2.5.1
3+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
4+
serialize = {major}.{minor}.{patch}
55
commit = False
66
tag = False
77
verbose = True
88
allow_dirty = False
99
tag_name = {new_version}
1010

1111
[bumpversion:file:src/adminfilters/__init__.py]
12+
1213
[bumpversion:file:pyproject.toml]

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-adminfilters"
3-
version = "2.5.0"
3+
version = "2.5.1"
44
description = "Django mixin to easily add buttons to any ModelAdmin"
55
readme = "README.md"
66
requires-python = ">=3.11"

src/adminfilters/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NAME = "django-adminfilters"
2-
VERSION = __version__ = "2.5.0"
2+
VERSION = __version__ = "2.5.1"
33
__author__ = "sax"

0 commit comments

Comments
 (0)