Skip to content

Commit

Permalink
🔖 bump version 2024.47 -> 2024.48 (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 12, 2024
1 parent 569c027 commit da9461c
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -615,7 +617,7 @@ Initial release! 🎉

- Josh Thomas <[email protected]> (maintainer)

[unreleased]: https:/westerveltco/django-twc-project/compare/v2024.47...HEAD
[unreleased]: https:/westerveltco/django-twc-project/compare/v2024.48...HEAD
[2024.1]: https:/westerveltco/django-twc-project/releases/tag/v2024.1
[2024.2]: https:/westerveltco/django-twc-project/releases/tag/v2024.2
[2024.3]: https:/westerveltco/django-twc-project/releases/tag/v2024.3
Expand Down Expand Up @@ -663,3 +665,4 @@ Initial release! 🎉
[2024.45]: https:/westerveltco/django-twc-project/releases/tag/v2024.45
[2024.46]: https:/westerveltco/django-twc-project/releases/tag/v2024.46
[2024.47]: https:/westerveltco/django-twc-project/releases/tag/v2024.47
[2024.48]: https:/westerveltco/django-twc-project/releases/tag/v2024.48
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.47
2024.48
2 changes: 1 addition & 1 deletion copier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ _secret_questions:
_subdirectory: src/django_twc_project

template_version:
default: "2024.47"
default: "2024.48"
when: false

# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/default/.copier/project.yml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
author_email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion examples/default/default/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="d5ef6bf81c99daa8960c9b6a59e1c979af58ef8fd8a89487fd22a9d3655015a3",
default="cba28484480a4728ba557e658b14271ad9036f471ddd8141afe1d833f36e7080",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down
2 changes: 1 addition & 1 deletion examples/postgis/.copier/project.yml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
author_email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion examples/postgis/default/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="2788e07dc7d33ce5bae2a621077a35d3fa9247a2c501fa3f6502bab20367eb6c",
default="39db6edb77dcf57a5313d509d1558a8115457c786a03505efdefb047a9e61f66",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down
2 changes: 1 addition & 1 deletion examples/with_vite/.copier/project.yml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
author_email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion examples/with_vite/with_vite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="388f0e7e7f10868de7c5655bd64089249ea9d9a3142c36f3afef42dc75586d08",
default="32a487e634c7f4a025c0dc158cf7613a49c59d35035a83d2c52ad2e9e732e5de",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit da9461c

Please sign in to comment.