From bf97790bcc41b204c222aff1ebe5c0b95b874032 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 24 Jan 2024 15:41:15 -0600 Subject: [PATCH 1/2] :bookmark: bump version 0.1.1 -> 0.2.0 --- pyproject.toml | 2 +- src/django_twc_toolbox/__init__.py | 2 +- tests/test_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 681a997..b51bd39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,7 @@ path = "src/django_twc_toolbox/__init__.py" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.1.1" +current_version = "0.2.0" 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 4e2c34c..a148ede 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.1.1" +__version__ = "0.2.0" diff --git a/tests/test_version.py b/tests/test_version.py index e2e3154..6e0b3d2 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.1.1" + assert __version__ == "0.2.0" From 053b466efb10a7750c322b6bcd8f9470341d1a6c Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 24 Jan 2024 15:42:29 -0600 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9362b28..42ce2a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ --> ## [Unreleased] +## [0.2.0] + ### Added - `DatePaginator` and `DatePage` classes, extending Django's built-in `Paginator` and `Page` classes, respectively. These new classes enable pagination based on a specified date field, making it easier to work with date-based data. Useful for applications that require handling of time-series data or chronological records, such as a blog or an event archive. @@ -35,5 +37,6 @@ Initial release! - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-toolbox/compare/v0.1.1...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-toolbox/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/westerveltco/django-email-toolbox/releases/tag/v0.2.0 [0.1.1]: https://github.com/westerveltco/django-email-toolbox/releases/tag/v0.1.1