Skip to content

Commit

Permalink
🔖 bump version 2024.41 -> 2024.42 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 2, 2024
1 parent 3f75cf0 commit 63b020b
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.42]

### Added

- Added `copier` and `copier-templates-extensions` to `dev` extras in `pyproject.toml`.
Expand Down Expand Up @@ -558,7 +560,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.41...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.42...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 @@ -600,3 +602,4 @@ Initial release! 🎉
[2024.39]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.39
[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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.41
2024.42
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.41"
default: "2024.42"
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: 8f6dfe8
_commit: v2024.41-11-g87d8a23
_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="99ef47c1d0030ba801c1b2faea48a53f6fea26917a18fe6e599d81dcf6c9c274",
default="d265c5f6d5b795a356518b566915f22ea51c4fc4ae60a152e4bdb495945e3e05",
)

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: 796ac79
_commit: v2024.41-11-gcca21ae
_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="ffd9f2d0f7ea5017df0e4deb07872c8e45a7ecb9df5294428daeb73c01ee66cf",
default="bf49d90d9dbdcdac0f380e96c65bebddb805191d2652bdb389ea005a043f1afd",
)

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: cc27e1d
_commit: v2024.41-11-g2c659e1
_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="b782d9760c3651b1bb48fd8d310443cc0823b27fb783e7e9e47ea5635c5dc11d",
default="cdb1fe5f1e1c6838b570d63265f4388c8c21cd79a75f33e2ed2e8d0e2fc547bd",
)

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.41"
current_version = "2024.42"
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.41"
assert version == "2024.42"

0 comments on commit 63b020b

Please sign in to comment.