Skip to content

Commit 7d495b3

Browse files
🔖 bump version 2024.49 -> 2024.50 (#321)
1 parent 7dc9dbe commit 7d495b3

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.50]
21+
2022
### Added
2123

2224
- Added a new settings constant `PROD` that is just the inverse of `DEBUG`, e.g. `not DEBUG`. Purely to aid in readability of some of the settings which are only enabled when not in debug mode (cookies and whatnot).
@@ -643,7 +645,7 @@ Initial release! 🎉
643645

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

646-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.49...HEAD
648+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.50...HEAD
647649
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
648650
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
649651
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
@@ -693,3 +695,4 @@ Initial release! 🎉
693695
[2024.47]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.47
694696
[2024.48]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.48
695697
[2024.49]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.49
698+
[2024.50]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.50

VERSION

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

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.49"
16+
default: "2024.50"
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: 6bb690c
2+
_commit: v2024.49-21-gf2d96fd
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
@@ -261,7 +261,7 @@
261261

262262
SECRET_KEY = env.str(
263263
"SECRET_KEY",
264-
default="cd67907c804d0c0e83d19bd1e8ccf497cf590f3b82feda8eafc2ca896969f66c",
264+
default="f2fa063b2b89e8ab6102826a9a9a255836d5e8eeced8c10ce45166a5cb6d1665",
265265
)
266266

267267
SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD

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: 0be31e3
2+
_commit: v2024.49-21-g445e89b
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
@@ -261,7 +261,7 @@
261261

262262
SECRET_KEY = env.str(
263263
"SECRET_KEY",
264-
default="2eb76f147ecee55955385cfe19c04396f0d1f076d5df2863cd3627a0c8b10db6",
264+
default="481a3bdea88bfefe60bc46c7ad7d5eed503eb1747d37ab8917a69e5ce1782f74",
265265
)
266266

267267
SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD

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: ddd676d
2+
_commit: v2024.49-21-gae0ab94
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
@@ -262,7 +262,7 @@
262262

263263
SECRET_KEY = env.str(
264264
"SECRET_KEY",
265-
default="14b851a2a5b9a67481499a0c741edf56b9e79d292aeedbdf9584515a19a7e2c9",
265+
default="14adc5fe42c28ca2aecb0a678a7b065606a2b2766fcfc0f977b85045ae3521ba",
266266
)
267267

268268
SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD

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

0 commit comments

Comments
 (0)