diff --git a/.copier/package.yml b/.copier/package.yml index bf71da3..6ac4769 100644 --- a/.copier/package.yml +++ b/.copier/package.yml @@ -3,7 +3,7 @@ _commit: v2024.27 _src_path: gh:westerveltco/django-twc-package author_email: josh@joshthomas.dev author_name: Josh Thomas -current_version: 0.16.0 +current_version: 0.16.1 django_versions: - '4.2' - '5.0' diff --git a/CHANGELOG.md b/CHANGELOG.md index 03431c8..5eb5aed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [0.16.1] + ### Fixed - Pagination in the `django_twc_toolbox.crud.views.CRUDView` list view now respects whether the view is using django-tables2 or the falling back to the default provided by neapolitan. @@ -237,7 +239,7 @@ Initial release! - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-toolbox/compare/v0.16.0...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-toolbox/compare/v0.16.1...HEAD [0.2.1]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.2.1 [0.2.0]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.2.0 [0.1.1]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.1.1 @@ -260,3 +262,4 @@ Initial release! [0.14.0]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.14.0 [0.15.0]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.15.0 [0.16.0]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.16.0 +[0.16.1]: https://github.com/westerveltco/django-twc-toolbox/releases/tag/v0.16.1 diff --git a/pyproject.toml b/pyproject.toml index bbfe3cd..27c6245 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,7 +89,7 @@ stubPath = "src/stubs" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.16.0" +current_version = "0.16.1" push = false # set to false for CI tag = false version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" diff --git a/src/django_twc_toolbox/__init__.py b/src/django_twc_toolbox/__init__.py index 1862dbf..78d3925 100644 --- a/src/django_twc_toolbox/__init__.py +++ b/src/django_twc_toolbox/__init__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.16.0" +__version__ = "0.16.1" diff --git a/tests/test_version.py b/tests/test_version.py index 9744e03..833ef6d 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.16.0" + assert __version__ == "0.16.1"