From 9fa92ffd3a71aedd0617c936a2e1aa5367d395cb Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Mon, 12 Aug 2024 13:28:25 -0500 Subject: [PATCH] :bookmark: bump version 2024.48 -> 2024.49 (#303) --- CHANGELOG.md | 5 ++++- VERSION | 2 +- copier.yml | 2 +- examples/default/.copier/project.yml | 2 +- examples/default/default/settings.py | 2 +- examples/postgis/.copier/project.yml | 2 +- examples/postgis/default/settings.py | 2 +- examples/with_vite/.copier/project.yml | 2 +- examples/with_vite/with_vite/settings.py | 2 +- pyproject.toml | 2 +- tests/test_version.py | 2 +- 11 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fd0db9..06a429d 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.49] + ### Fixed - Actually use the `dev` extra in `py-dev` stage within `Dockerfile`, instead of the `docs` extra. 🤦 @@ -621,7 +623,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.48...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.49...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 @@ -670,3 +672,4 @@ Initial release! 🎉 [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 +[2024.49]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.49 diff --git a/VERSION b/VERSION index ecca4ce..be91535 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.48 +2024.49 diff --git a/copier.yml b/copier.yml index 219554d..6716475 100644 --- a/copier.yml +++ b/copier.yml @@ -13,7 +13,7 @@ _secret_questions: _subdirectory: src/django_twc_project template_version: - default: "2024.48" + default: "2024.49" when: false # ---------------------------------------------------------------------- diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index ffd128e..482480e 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: bd99c55 +_commit: v2024.48-5-g86d81c0 _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 19ed366..3c2411c 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="072ec42cfed9b6e311053f63bc4dcb1b95ff20806cbbd7b1a4b79266844de60d", + default="ed8feab945b6dfc475b848d2bc686233a3a5b86aabcb29dbf9998b6ad12f9075", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index e92f9d3..a6455c7 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: 297c4c1 +_commit: v2024.48-5-gad5bdc3 _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 8e767dd..9383269 100644 --- a/examples/postgis/default/settings.py +++ b/examples/postgis/default/settings.py @@ -230,7 +230,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="ec19355e9b67f5e48a7d19c172cf39cb7ab4efef8f75c9708587e8cbf0b7dda7", + default="32743798028dea9a941e93ae461e86ee0a5dea5b52a1bbdcf3a39be0cf134505", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index f158e93..53a6755 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: cc02d1c +_commit: v2024.48-5-ge78904e _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 9efc01a..1313b84 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="acdd5cd2625a46e746dd25ef883e93c43f23b7950118ff87d518aad48eb0fad0", + default="7b181c604bce444530e2c986c90739e91b8d157a3778d91ddc8e7df39e46f092", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG diff --git a/pyproject.toml b/pyproject.toml index c236fa5..e9aa0f2 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.48" +current_version = "2024.49" 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 ed71c0d..0d43ea0 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.48" + assert version == "2024.49"