Skip to content

Commit

Permalink
🔖 bump version 2024.50 -> 2024.51 (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Sep 13, 2024
1 parent b35fadb commit eb37f7f
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.51]

### Fixed

- 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.
Expand Down Expand Up @@ -649,7 +651,7 @@ Initial release! 🎉

- Josh Thomas <josh@joshthomas.dev> (maintainer)

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.50...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.51...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
Expand Down Expand Up @@ -700,3 +702,4 @@ Initial release! 🎉
[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
[2024.50]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.50
[2024.51]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.51
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.50
2024.51
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.50"
default: "2024.51"
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: d7c787a
_commit: v2024.50-5-g2d1c3fa
_src_path: .
admin_email: admin@example.com
author_email: jdoe@example.com
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 @@ -261,7 +261,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="280ee5759441f775fd72de4a305a725f57610e7f8905ceb698bc61de36f7c691",
default="4e5b5f02f3604cacfb7f58da0c0f66c32846a6034fb56e1d07a03d9c22f73ff3",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD
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: 0d950bd
_commit: v2024.50-5-g4f19ea2
_src_path: .
admin_email: admin@example.com
author_email: jdoe@example.com
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 @@ -261,7 +261,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="141e1333747741663fa51214fbe83acb2ec4f18c2ac889d7935071b02ab8395c",
default="eac7987975fd8a0ecc81cc6f9afe9138bdcad4cbebdd80f27f7a1f140b9550a5",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD
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: 4bed617
_commit: v2024.50-5-g8b63f34
_src_path: .
admin_email: admin@example.com
author_email: jdoe@example.com
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 @@ -262,7 +262,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="655d6be74bd2ecc1b0dfca6636cb8d124f6a99e71020b4497981582466534072",
default="2164c2f2347923f03d8234d274e6f913de88491be5f5dd9bfea13fc461312138",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD
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.50"
current_version = "2024.51"
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.50"
assert version == "2024.51"

0 comments on commit eb37f7f

Please sign in to comment.