Skip to content

Commit eb37f7f

Browse files
🔖 bump version 2024.50 -> 2024.51 (#325)
1 parent b35fadb commit eb37f7f

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.51]
21+
2022
### Fixed
2123

2224
- Removed `conn_max_age` argument when configuring database connection if Django version is greater than 5.1. In that case, we enable connection pooling and the `conn_max_age` setting causes the application to error with a `django.core.exceptions.ImproperlyConfigured: Pooling doesn't support persistent connections.` exception.
@@ -649,7 +651,7 @@ Initial release! 🎉
649651

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

652-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.50...HEAD
654+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.51...HEAD
653655
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
654656
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
655657
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
@@ -700,3 +702,4 @@ Initial release! 🎉
700702
[2024.48]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.48
701703
[2024.49]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.49
702704
[2024.50]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.50
705+
[2024.51]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.51

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.50
1+
2024.51

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.50"
16+
default: "2024.51"
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: d7c787a
2+
_commit: v2024.50-5-g2d1c3fa
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
@@ -261,7 +261,7 @@
261261

262262
SECRET_KEY = env.str(
263263
"SECRET_KEY",
264-
default="280ee5759441f775fd72de4a305a725f57610e7f8905ceb698bc61de36f7c691",
264+
default="4e5b5f02f3604cacfb7f58da0c0f66c32846a6034fb56e1d07a03d9c22f73ff3",
265265
)
266266

267267
SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD

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: 0d950bd
2+
_commit: v2024.50-5-g4f19ea2
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
@@ -261,7 +261,7 @@
261261

262262
SECRET_KEY = env.str(
263263
"SECRET_KEY",
264-
default="141e1333747741663fa51214fbe83acb2ec4f18c2ac889d7935071b02ab8395c",
264+
default="eac7987975fd8a0ecc81cc6f9afe9138bdcad4cbebdd80f27f7a1f140b9550a5",
265265
)
266266

267267
SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD

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: 4bed617
2+
_commit: v2024.50-5-g8b63f34
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
@@ -262,7 +262,7 @@
262262

263263
SECRET_KEY = env.str(
264264
"SECRET_KEY",
265-
default="655d6be74bd2ecc1b0dfca6636cb8d124f6a99e71020b4497981582466534072",
265+
default="2164c2f2347923f03d8234d274e6f913de88491be5f5dd9bfea13fc461312138",
266266
)
267267

268268
SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD

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.50"
18+
current_version = "2024.51"
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.50"
13+
assert version == "2024.51"

0 commit comments

Comments
 (0)