Skip to content

Commit

Permalink
🔖 bump version 2024.48 -> 2024.49 (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 12, 2024
1 parent 9fbe395 commit 9fa92ff
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.49]

### Fixed

- Actually use the `dev` extra in `py-dev` stage within `Dockerfile`, instead of the `docs` extra. 🤦
Expand Down Expand Up @@ -621,7 +623,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.48...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.49...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 @@ -670,3 +672,4 @@ Initial release! 🎉
[2024.46]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.46
[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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.48
2024.49
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.48"
default: "2024.49"
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: bd99c55
_commit: v2024.48-5-g86d81c0
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="072ec42cfed9b6e311053f63bc4dcb1b95ff20806cbbd7b1a4b79266844de60d",
default="ed8feab945b6dfc475b848d2bc686233a3a5b86aabcb29dbf9998b6ad12f9075",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
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: 297c4c1
_commit: v2024.48-5-gad5bdc3
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="ec19355e9b67f5e48a7d19c172cf39cb7ab4efef8f75c9708587e8cbf0b7dda7",
default="32743798028dea9a941e93ae461e86ee0a5dea5b52a1bbdcf3a39be0cf134505",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
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: cc02d1c
_commit: v2024.48-5-ge78904e
_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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="acdd5cd2625a46e746dd25ef883e93c43f23b7950118ff87d518aad48eb0fad0",
default="7b181c604bce444530e2c986c90739e91b8d157a3778d91ddc8e7df39e46f092",
)

SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG
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.48"
current_version = "2024.49"
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.48"
assert version == "2024.49"

0 comments on commit 9fa92ff

Please sign in to comment.