Skip to content

Commit

Permalink
🔖 bump version 2024.39 -> 2024.40 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 2, 2024
1 parent f9e6224 commit 9ce3681
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.40]

### Changed

- Pinned `django-storages<1.14.4` due to some recent changes introduced in the base storages backend of Django. Relevant issues: [revsys/django-health-check#434](https:/revsys/django-health-check/issues/434) and [jschneier/django-storages#1430](https:/jschneier/django-storages/issues/1430).
Expand Down Expand Up @@ -528,7 +530,7 @@ Initial release! 🎉

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

[unreleased]: https:/westerveltco/django-twc-project/compare/v2024.39...HEAD
[unreleased]: https:/westerveltco/django-twc-project/compare/v2024.40...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 Down Expand Up @@ -568,3 +570,4 @@ Initial release! 🎉
[2024.37]: https:/westerveltco/django-twc-project/releases/tag/v2024.37
[2024.38]: https:/westerveltco/django-twc-project/releases/tag/v2024.38
[2024.39]: https:/westerveltco/django-twc-project/releases/tag/v2024.39
[2024.40]: https:/westerveltco/django-twc-project/releases/tag/v2024.40
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.39
2024.40
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.39"
default: "2024.40"
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: 587d655
_commit: v2024.39-13-gab77b9c
_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="7a4f48632081410d02e70429c66822840875973f3740d6646d2061a48dedb5e8",
default="00396bdb6cba333dc84cc3cafa0ef6b6ab9d7b1ff883ada2777d839c69a54154",
)

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: '1520735'
_commit: v2024.39-13-gbbf1408
_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="0c21ad9441e87a734310b5c88e6b64aec9d49da0f8aea55337bd169636dcf7e8",
default="744cd9b2835c4469abfffe083db8df92452d86f7e074156d8a8df123c48f6afe",
)

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: 9d187ab
_commit: v2024.39-13-ga70294a
_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="8abcc16a3d057bf14a7c389c1e0799ac8cd9bbcde8d0b12bda05253e4f8d5b1b",
default="fda437d9049ba661f59cc520fc12d5723e9d81c4b5030fed68226a104717ad80",
)

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.39"
current_version = "2024.40"
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.39"
assert version == "2024.40"

0 comments on commit 9ce3681

Please sign in to comment.