diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c3e731f..7466826 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.1 +current_version = 2.4.2 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{release} commit = False diff --git a/.gitignore b/.gitignore index 57ec9fd..24e26cf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .* ~* +build __pycache__ *.egg-info !.gitignore diff --git a/CHANGES.md b/CHANGES.md index 7c51268..ac00f48 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/Makefile b/Makefile index 4689785..2e7eb3c 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/src/adminfilters/__init__.py b/src/adminfilters/__init__.py index 43f2bd2..909dad9 100644 --- a/src/adminfilters/__init__.py +++ b/src/adminfilters/__init__.py @@ -1,3 +1,3 @@ NAME = "django-adminfilters" -VERSION = __version__ = "2.4.1" +VERSION = __version__ = "2.4.2" __author__ = "sax"