Skip to content

Commit

Permalink
🔖 bump version 2024.42 -> 2024.43 (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 2, 2024
1 parent e45ee13 commit 59ccbd3
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.43]

### Fixed

- Fixed arguments surrounded by curly braces in `Justfile` template by wrapping with `{% raw %}{% endraw %}` Jinja2 code.
Expand Down Expand Up @@ -564,7 +566,7 @@ Initial release! 🎉

- Josh Thomas <josh@joshthomas.dev> (maintainer)

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.42...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.43...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 @@ -607,3 +609,4 @@ Initial release! 🎉
[2024.40]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.40
[2024.41]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.41
[2024.42]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.42
[2024.43]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.43
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.42
2024.43
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.42"
default: "2024.43"
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: 7aa20a3
_commit: v2024.42-5-gd15733f
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="2a3e7e4cf7570dc13ab2c4b654528430d330fb5339f7be639f022fbfa40d5083",
default="db9f1735c14d1334a4257ed33f2291fd2481a502a200c8a14cf2bf52bf5b6ffa",
)

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: 4acfec7
_commit: v2024.42-5-g1f709c4
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="07708d0cb06d70d8e10b6410bf4e61631288dbd6f4348d181b95b77541b6e545",
default="3bf03923fdd0b0b33ca53de61366649a9409ea8ddb3caffa780972c9cbfe99b8",
)

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: d4dc900
_commit: v2024.42-5-g6834673
_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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="d559e23ab01f5c5c384de8de2fc3821fa03bbd7d15ee26c78c70e0ba7d4cc38a",
default="0d20f0eb3b5dde1b6ab703274dd0d54a798e6eec2167f81742c67cedd346f617",
)

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.42"
current_version = "2024.43"
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.42"
assert version == "2024.43"

0 comments on commit 59ccbd3

Please sign in to comment.