diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b958104..b894f060 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.15] + ### Added - Added S3 and Okta credentials to `.env.prod`. @@ -253,7 +255,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.14...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.15...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 @@ -268,3 +270,4 @@ Initial release! 🎉 [2024.12]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.12 [2024.13]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.13 [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 diff --git a/VERSION b/VERSION index adb91055..c1deb36e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.14 +2024.15 diff --git a/copier.yml b/copier.yml index 222f5ce0..f2db20d5 100644 --- a/copier.yml +++ b/copier.yml @@ -9,7 +9,7 @@ _secret_questions: _subdirectory: src/django_twc_project template_version: - default: "2024.14" + default: "2024.15" when: false # ---------------------------------------------------------------------- diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index 9e8a337f..416d0fb5 100644 --- a/examples/default/.copier/project.yml +++ b/examples/default/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: df8a3ec +_commit: v2024.14-13-g0eb23a8 _src_path: . admin_email: admin@example.com author_name: John Doe diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index 698bd64d..ace9cb38 100644 --- a/examples/postgis/.copier/project.yml +++ b/examples/postgis/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: '7677536' +_commit: v2024.14-13-g0a03a35 _src_path: . admin_email: admin@example.com author_name: John Doe diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index 4e16a206..2e92d61c 100644 --- a/examples/with_vite/.copier/project.yml +++ b/examples/with_vite/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: acf7a82 +_commit: v2024.14-13-g8852ff8 _src_path: . admin_email: admin@example.com author_name: John Doe diff --git a/pyproject.toml b/pyproject.toml index 3a10ed93..b35fe8b5 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.14" +current_version = "2024.15" 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 a991a6fa..19dd7707 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.14" + assert version == "2024.15"