Skip to content

Commit

Permalink
Release 2.4.2 ready
Browse files Browse the repository at this point in the history
  • Loading branch information
GigiusB committed Mar 8, 2024
1 parent c60e5c6 commit 97e9fa7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.4.1
current_version = 2.4.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<release>\d+)
serialize = {major}.{minor}.{release}
commit = False
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.*
~*
build
__pycache__
*.egg-info
!.gitignore
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Release 2.4.2
=============
* Autocomplete filter losing the value after the selection
* With LinkedAutocomplete and Autocomplete in same filter list the latter would not work


Release 2.4.1
=============
* Fixes bug in AutiCompleteFilter
Expand Down
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ docs: .mkbuilddir
@mkdir -p ${BUILDDIR}/docs
sphinx-build -aE docs ${BUILDDIR}/docs

bump: ## Bumps version
@while :; do \
read -r -p "bumpversion [major/minor/release]: " PART; \
case "$$PART" in \
major|minor|release) break ;; \
esac \
done ; \
bumpversion --no-commit --allow-dirty $$PART
@grep "^VERSION " src/adminfilters/__init__.py


heroku:
@git checkout heroku
Expand Down
2 changes: 1 addition & 1 deletion src/adminfilters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NAME = "django-adminfilters"
VERSION = __version__ = "2.4.1"
VERSION = __version__ = "2.4.2"
__author__ = "sax"

0 comments on commit 97e9fa7

Please # to comment.