Skip to content

Commit

Permalink
🔖 bump version 2024.20 -> 2024.21 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored May 3, 2024
1 parent 2298622 commit c4a4d23
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.21]

### Fixed

- Added missing trailing slash when copying files in `Dockerfile`.
Expand Down Expand Up @@ -325,7 +327,7 @@ Initial release! 🎉

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

[unreleased]: https:/westerveltco/django-twc-project/compare/v2024.20...HEAD
[unreleased]: https:/westerveltco/django-twc-project/compare/v2024.21...HEAD
[2024.1]: https:/westerveltco/django-twc-project/releases/tag/v2024.1
[2024.2]: https:/westerveltco/django-twc-project/releases/tag/v2024.2
[2024.3]: https:/westerveltco/django-twc-project/releases/tag/v2024.3
Expand All @@ -346,3 +348,4 @@ Initial release! 🎉
[2024.18]: https:/westerveltco/django-twc-project/releases/tag/v2024.18
[2024.19]: https:/westerveltco/django-twc-project/releases/tag/v2024.19
[2024.20]: https:/westerveltco/django-twc-project/releases/tag/v2024.20
[2024.21]: https:/westerveltco/django-twc-project/releases/tag/v2024.21
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.20
2024.21
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.20"
default: "2024.21"
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: fed8045
_commit: v2024.20-5-gad6c2a6
_src_path: .
admin_email: [email protected]
author_name: John Doe
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 @@ -229,7 +229,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="24ac866a13b42d669f3c1aa8ab734d29a57466f0a0a4c9d017d9d1258fbf4b62",
default="86eb53055296ec8d75634e505b3f2e49348cb35a45ff9aef4931f72f93cfbd5d",
)

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: '6743112'
_commit: v2024.20-5-g4ebefcc
_src_path: .
admin_email: [email protected]
author_name: John Doe
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 @@ -229,7 +229,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="2912bf5483af8062923a8dd2ffe513067c57a22fa8d45c3a5378fd71a793ce08",
default="8ac3a3a51bc27a216d05e4b535e0218c4b9796f0dc69020543bc5536d55ed25d",
)

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: '2875674'
_commit: v2024.20-5-g2265584
_src_path: .
admin_email: [email protected]
author_name: John Doe
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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="2e1400a5f5a7c9b0448ee7d2e66951335f09d8df7b40c67994f3de2c076b3b47",
default="0e3db3f19bc2839b9e92bb9bb74e82f13501480fed3e86d7917abfcd5cac7461",
)

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.8"
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2024.20"
current_version = "2024.21"
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.20"
assert version == "2024.21"

0 comments on commit c4a4d23

Please sign in to comment.