diff --git a/CHANGELOG.md b/CHANGELOG.md index c323fb1..4791c3d 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.48] + ### Changed - `just refresh` command now calls `just lock`. @@ -615,7 +617,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.47...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.48...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 @@ -663,3 +665,4 @@ Initial release! 🎉 [2024.45]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.45 [2024.46]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.46 [2024.47]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.47 +[2024.48]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.48 diff --git a/VERSION b/VERSION index 6784ec6..ecca4ce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.47 +2024.48 diff --git a/copier.yml b/copier.yml index e6b48c9..219554d 100644 --- a/copier.yml +++ b/copier.yml @@ -13,7 +13,7 @@ _secret_questions: _subdirectory: src/django_twc_project template_version: - default: "2024.47" + default: "2024.48" when: false # ---------------------------------------------------------------------- diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index 078245f..bd33421 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: 637cc27 +_commit: v2024.47-12-ge3621bb _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 c86afcc..1bed1c2 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="d5ef6bf81c99daa8960c9b6a59e1c979af58ef8fd8a89487fd22a9d3655015a3", + default="cba28484480a4728ba557e658b14271ad9036f471ddd8141afe1d833f36e7080", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index 92c3ab4..8f55897 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: d08b482 +_commit: v2024.47-12-gaf66970 _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 2075e1d..cbf2d59 100644 --- a/examples/postgis/default/settings.py +++ b/examples/postgis/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="2788e07dc7d33ce5bae2a621077a35d3fa9247a2c501fa3f6502bab20367eb6c", + default="39db6edb77dcf57a5313d509d1558a8115457c786a03505efdefb047a9e61f66", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index 2a7b256..4810e83 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: 3d71483 +_commit: v2024.47-12-gd331c7e _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 b648207..7cac4b6 100644 --- a/examples/with_vite/with_vite/settings.py +++ b/examples/with_vite/with_vite/settings.py @@ -231,7 +231,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="388f0e7e7f10868de7c5655bd64089249ea9d9a3142c36f3afef42dc75586d08", + default="32a487e634c7f4a025c0dc158cf7613a49c59d35035a83d2c52ad2e9e732e5de", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/pyproject.toml b/pyproject.toml index e7db8b0..c236fa5 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.47" +current_version = "2024.48" 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 05e5fc4..ed71c0d 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.47" + assert version == "2024.48"