Skip to content

Commit

Permalink
🔖 bump version 2024.49 -> 2024.50 (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Sep 13, 2024
1 parent 7dc9dbe commit 7d495b3
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.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 @@ -643,7 +645,7 @@ Initial release! 🎉

- Josh Thomas <josh@joshthomas.dev> (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 @@ -693,3 +695,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: 6bb690c
_commit: v2024.49-21-gf2d96fd
_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="cd67907c804d0c0e83d19bd1e8ccf497cf590f3b82feda8eafc2ca896969f66c",
default="f2fa063b2b89e8ab6102826a9a9a255836d5e8eeced8c10ce45166a5cb6d1665",
)

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: 0be31e3
_commit: v2024.49-21-g445e89b
_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="2eb76f147ecee55955385cfe19c04396f0d1f076d5df2863cd3627a0c8b10db6",
default="481a3bdea88bfefe60bc46c7ad7d5eed503eb1747d37ab8917a69e5ce1782f74",
)

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: ddd676d
_commit: v2024.49-21-gae0ab94
_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="14b851a2a5b9a67481499a0c741edf56b9e79d292aeedbdf9584515a19a7e2c9",
default="14adc5fe42c28ca2aecb0a678a7b065606a2b2766fcfc0f977b85045ae3521ba",
)

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"

0 comments on commit 7d495b3

Please sign in to comment.