diff --git a/CHANGELOG.md b/CHANGELOG.md index 84c5cfd9..5edc713b 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.37] + ### Added - Created a new GitHub Team for documentation and added it to the `CODEOWNERS` file in the project template. @@ -499,7 +501,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.36...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.37...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 @@ -536,3 +538,4 @@ Initial release! 🎉 [2024.34]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.34 [2024.35]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.35 [2024.36]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.36 +[2024.37]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.37 diff --git a/VERSION b/VERSION index e7f4efa8..65ba8444 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.36 +2024.37 diff --git a/copier.yml b/copier.yml index d99c70e4..de931671 100644 --- a/copier.yml +++ b/copier.yml @@ -13,7 +13,7 @@ _secret_questions: _subdirectory: src/django_twc_project template_version: - default: "2024.36" + default: "2024.37" when: false # ---------------------------------------------------------------------- diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index 4b33ee79..305ac79b 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: 691f870 +_commit: v2024.36-7-gd302c2e _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/default/default/settings.py b/examples/default/default/settings.py index be8d6dc4..5695b2cc 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -231,7 +231,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="ff5d7cd02d9bfdf431c3dbd0d0756246616dc67478d6986c396b8ff65b7d9a9a", + default="cf5797a4d6109b6aeb05170e99d8c866cefcc949899a91aaf20db2305f040689", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index 9ada40ff..77f6f129 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: f1e98d0 +_commit: v2024.36-7-gdb602a3 _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/postgis/default/settings.py b/examples/postgis/default/settings.py index de0a584c..2be83c96 100644 --- a/examples/postgis/default/settings.py +++ b/examples/postgis/default/settings.py @@ -231,7 +231,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="0056c3c4b2b513ed1518d5b3a218760f8755c81dbeb72b29768d73990e0cccb0", + default="8b511092e9161301466a0465baa3201ef2c543ad54ae0592888f6046c03add2e", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index c440e213..bc9bba30 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: d34c78f +_commit: v2024.36-7-g17d8ff9 _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/with_vite/with_vite/settings.py b/examples/with_vite/with_vite/settings.py index ff69f496..f1e77b6d 100644 --- a/examples/with_vite/with_vite/settings.py +++ b/examples/with_vite/with_vite/settings.py @@ -232,7 +232,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="44fe78fb44190f28c38a642089becf3c2ab3f8271e87b44acb7a2480fc0ce612", + default="012456c6e781f4d64e2a90e43a771c4b3252fc439d9d4f0e863dbb680cb6b222", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/pyproject.toml b/pyproject.toml index 28e93730..1b79e220 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires-python = ">= 3.9" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "2024.36" +current_version = "2024.37" 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 839c1216..7507e109 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.36" + assert version == "2024.37"