Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 bump version 2024.49 -> 2024.50 #320

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.50]

### Added

- 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).
Expand Down Expand Up @@ -642,7 +644,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.49...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.50...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 @@ -692,3 +694,4 @@ Initial release! 🎉
[2024.47]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.47
[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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.49
2024.50
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.49"
default: "2024.50"
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: b5c2b02
_commit: v2024.49-17-gbd1da15
_src_path: .
admin_email: [email protected]
author_email: [email protected]
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 @@ -248,7 +248,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="1d363a5b7b1a1e13c6e99ef493be98ceac5045f59f69cb05f04ecb09963515d0",
default="3f4110ca5e864ba03cc8682709b1a3e49630778dac43fd3440abe6ac5b1aabf3",
)

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: a6cca1e
_commit: v2024.49-17-g644f2a9
_src_path: .
admin_email: [email protected]
author_email: [email protected]
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 @@ -248,7 +248,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="ce2058959740529123cdd14374bb5fefd408a14440ae1449465725bc084edf8a",
default="8fd026391044eb74e31ccf090d2d07967c911a8378e65f44a79981ab4cb4108b",
)

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: 1a2cdb4
_commit: v2024.49-17-g7d8f561
_src_path: .
admin_email: [email protected]
author_email: [email protected]
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 @@ -249,7 +249,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="a3d16090dfcb9188bf2cd7f35455e71e50dde8605db3f5582c9f630e1bd9e1e8",
default="0d669bc3b2d1de490abef44d5c12da09b2b3f85603b87c85d1fa0f003d4eda34",
)

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.49"
current_version = "2024.50"
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.49"
assert version == "2024.50"