Skip to content

Commit

Permalink
🔖 bump version 2024.37 -> 2024.38 (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 2, 2024
1 parent f538df0 commit a4b5bff
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.38]

### Changed

- `semgrep.yml` GitHub Actions workflow is now skipped if triggered by either Dependabot or the pre-commit-ci bot.
Expand Down Expand Up @@ -505,7 +507,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.37...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.38...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 @@ -543,3 +545,4 @@ Initial release! 🎉
[2024.35]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.35
[2024.36]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.36
[2024.37]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.37
[2024.38]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.38
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.37
2024.38
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.37"
default: "2024.38"
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: 5ee5923
_commit: v2024.37-5-g553b691
_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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="f289fbffd61d0acb422eaa40bf1936a6ee891a2c048b627e5aaa123ae2eb18b7",
default="4cd0547cd2156ee8d25a2fb9be8efb54024bc3f6ec873d809a69470d08b13ad8",
)

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: ee83dcd
_commit: v2024.37-5-ga48efa3
_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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="8ff410b35c8a0fd6611b366662e7c832fed974d2df168cdf50316e1b70fca8af",
default="be3be63fb64fe71365f361e2c60c044d7e0a98d474ea2a74dd68d481a8953a0b",
)

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: e5df070
_commit: v2024.37-5-gb735534
_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 @@ -232,7 +232,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="921549321164aa819724fb653e8a006277623bbe2fb2f2b01212b6b55a9bf7fe",
default="53f5caeec3c4c596ff18ad602e034d140c81dc8e762dcd149c38a36b88fbd6bc",
)

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.37"
current_version = "2024.38"
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.37"
assert version == "2024.38"

0 comments on commit a4b5bff

Please sign in to comment.