Skip to content

Commit 9ce3681

Browse files
🔖 bump version 2024.39 -> 2024.40 (#266)
1 parent f9e6224 commit 9ce3681

File tree

11 files changed

+14
-11
lines changed

11 files changed

+14
-11
lines changed

CHANGELOG.md

+4-1
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.40]
21+
2022
### Changed
2123

2224
- Pinned `django-storages<1.14.4` due to some recent changes introduced in the base storages backend of Django. Relevant issues: [revsys/django-health-check#434](https://github.com/revsys/django-health-check/issues/434) and [jschneier/django-storages#1430](https://github.com/jschneier/django-storages/issues/1430).
@@ -528,7 +530,7 @@ Initial release! 🎉
528530

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

531-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.39...HEAD
533+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.40...HEAD
532534
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
533535
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
534536
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
@@ -568,3 +570,4 @@ Initial release! 🎉
568570
[2024.37]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.37
569571
[2024.38]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.38
570572
[2024.39]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.39
573+
[2024.40]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.40

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.39
1+
2024.40

copier.yml

+1-1
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.39"
16+
default: "2024.40"
1717
when: false
1818

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

examples/default/.copier/project.yml

+1-1
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: 587d655
2+
_commit: v2024.39-13-gab77b9c
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/default/default/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
231231

232232
SECRET_KEY = env.str(
233233
"SECRET_KEY",
234-
default="7a4f48632081410d02e70429c66822840875973f3740d6646d2061a48dedb5e8",
234+
default="00396bdb6cba333dc84cc3cafa0ef6b6ab9d7b1ff883ada2777d839c69a54154",
235235
)
236236

237237
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

examples/postgis/.copier/project.yml

+1-1
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: '1520735'
2+
_commit: v2024.39-13-gbbf1408
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/postgis/default/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
231231

232232
SECRET_KEY = env.str(
233233
"SECRET_KEY",
234-
default="0c21ad9441e87a734310b5c88e6b64aec9d49da0f8aea55337bd169636dcf7e8",
234+
default="744cd9b2835c4469abfffe083db8df92452d86f7e074156d8a8df123c48f6afe",
235235
)
236236

237237
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

examples/with_vite/.copier/project.yml

+1-1
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: 9d187ab
2+
_commit: v2024.39-13-ga70294a
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/with_vite/with_vite/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232

233233
SECRET_KEY = env.str(
234234
"SECRET_KEY",
235-
default="8abcc16a3d057bf14a7c389c1e0799ac8cd9bbcde8d0b12bda05253e4f8d5b1b",
235+
default="fda437d9049ba661f59cc520fc12d5723e9d81c4b5030fed68226a104717ad80",
236236
)
237237

238238
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

pyproject.toml

+1-1
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.39"
18+
current_version = "2024.40"
1919
push = false # set to false for CI
2020
tag = false
2121
version_pattern = "YYYY.INC1"

tests/test_version.py

+1-1
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.39"
13+
assert version == "2024.40"

0 commit comments

Comments
 (0)