Skip to content

Commit

Permalink
🔖 bump version 2024.24 -> 2024.25 (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored May 22, 2024
1 parent 9a34f48 commit 8fb2321
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.25]

### Added

- Added our Data Analytics GitHub Team to the `CODEOWNERS` file for automatic review assignment to any PRs involving migrations.
Expand Down Expand Up @@ -370,7 +372,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.24...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.25...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 All @@ -395,3 +397,4 @@ Initial release! 🎉
[2024.22]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.22
[2024.23]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.23
[2024.24]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.24
[2024.25]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.25
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.24
2024.25
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.24"
default: "2024.25"
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: 7f54601
_commit: v2024.24-11-g9399f10
_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="60f792b96b8a3269e861ee572b3baedbf6d5e4a05b1eb01bb31241046565d3a3",
default="628013af7a8b6e060a721d63c7c1d32899370697f4ccd947a4074ea747d97873",
)

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: e715cb9
_commit: v2024.24-11-gd82c968
_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="255cf3e8b5c8f51eeb41e9a134f23f59e427cd97552152237ef11993b33168c6",
default="3c6917705ef796560b604bf363e10e7612d8c964280a5e016cab8a3d34330eff",
)

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: 2e479f5
_commit: v2024.24-11-g653c27b
_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="1111e882528b744cf2229747404971fa2b07cd16b43e253b868031eccce3562b",
default="7ca970cef8c095d34e5173f5f2d0b01435ee805997e2cd14923b927f74968005",
)

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.24"
current_version = "2024.25"
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.24"
assert version == "2024.25"

0 comments on commit 8fb2321

Please sign in to comment.