From 02c43af7c0f478dc333e065226296eab1ba5403f Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Fri, 26 Apr 2024 14:41:08 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20bump=20version=202024.16=20->=20?= =?UTF-8?q?2024.17=20(#134)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++- VERSION | 2 +- copier.yml | 2 +- pyproject.toml | 2 +- tests/test_version.py | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fbcb07..d9e5fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [2024.17] + ### Added - Pinned Django in `requirements.in` to less than the next major release based on the version chosen when answering copier questions. @@ -283,7 +285,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.16...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.17...HEAD [2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1 [2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2 [2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3 @@ -300,3 +302,4 @@ Initial release! 🎉 [2024.14]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.14 [2024.15]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.15 [2024.16]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.16 +[2024.17]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.17 diff --git a/VERSION b/VERSION index 112888f..6bd8d3a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.16 +2024.17 diff --git a/copier.yml b/copier.yml index 5973718..936ab26 100644 --- a/copier.yml +++ b/copier.yml @@ -13,7 +13,7 @@ _secret_questions: _subdirectory: src/django_twc_project template_version: - default: "2024.16" + default: "2024.17" when: false # ---------------------------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2c0bfcf..854dda3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires-python = ">= 3.8" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "2024.16" +current_version = "2024.17" push = false # set to false for CI tag = false version_pattern = "YYYY.INC1" diff --git a/tests/test_version.py b/tests/test_version.py index c4caaff..e4dec5a 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -10,4 +10,4 @@ def test_VERSION_version(): with open(file, encoding="utf-8") as f: version = f.read().strip() - assert version == "2024.16" + assert version == "2024.17"