Skip to content

Commit 9fa92ff

Browse files
🔖 bump version 2024.48 -> 2024.49 (#303)
1 parent 9fbe395 commit 9fa92ff

File tree

11 files changed

+14
-11
lines changed

11 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1717

1818
## [Unreleased]
1919

20+
## [2024.49]
21+
2022
### Fixed
2123

2224
- Actually use the `dev` extra in `py-dev` stage within `Dockerfile`, instead of the `docs` extra. 🤦
@@ -621,7 +623,7 @@ Initial release! 🎉
621623

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

624-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.48...HEAD
626+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.49...HEAD
625627
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
626628
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
627629
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
@@ -670,3 +672,4 @@ Initial release! 🎉
670672
[2024.46]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.46
671673
[2024.47]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.47
672674
[2024.48]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.48
675+
[2024.49]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.49

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.48
1+
2024.49

copier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ _secret_questions:
1313
_subdirectory: src/django_twc_project
1414

1515
template_version:
16-
default: "2024.48"
16+
default: "2024.49"
1717
when: false
1818

1919
# ----------------------------------------------------------------------

examples/default/.copier/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: bd99c55
2+
_commit: v2024.48-5-g86d81c0
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/default/default/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230

231231
SECRET_KEY = env.str(
232232
"SECRET_KEY",
233-
default="072ec42cfed9b6e311053f63bc4dcb1b95ff20806cbbd7b1a4b79266844de60d",
233+
default="ed8feab945b6dfc475b848d2bc686233a3a5b86aabcb29dbf9998b6ad12f9075",
234234
)
235235

236236
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

examples/postgis/.copier/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 297c4c1
2+
_commit: v2024.48-5-gad5bdc3
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/postgis/default/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230

231231
SECRET_KEY = env.str(
232232
"SECRET_KEY",
233-
default="ec19355e9b67f5e48a7d19c172cf39cb7ab4efef8f75c9708587e8cbf0b7dda7",
233+
default="32743798028dea9a941e93ae461e86ee0a5dea5b52a1bbdcf3a39be0cf134505",
234234
)
235235

236236
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

examples/with_vite/.copier/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: cc02d1c
2+
_commit: v2024.48-5-ge78904e
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/with_vite/with_vite/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
231231

232232
SECRET_KEY = env.str(
233233
"SECRET_KEY",
234-
default="acdd5cd2625a46e746dd25ef883e93c43f23b7950118ff87d518aad48eb0fad0",
234+
default="7b181c604bce444530e2c986c90739e91b8d157a3778d91ddc8e7df39e46f092",
235235
)
236236

237237
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requires-python = ">= 3.9"
1515
[tool.bumpver]
1616
commit = true
1717
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
18-
current_version = "2024.48"
18+
current_version = "2024.49"
1919
push = false # set to false for CI
2020
tag = false
2121
version_pattern = "YYYY.INC1"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def test_VERSION_version():
1010
with open(file, encoding="utf-8") as f:
1111
version = f.read().strip()
1212

13-
assert version == "2024.48"
13+
assert version == "2024.49"

0 commit comments

Comments
 (0)