Skip to content

Commit

Permalink
🔖 bump version 2024.25 -> 2024.26 (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed May 22, 2024
1 parent 58389e6 commit 1befe30
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.26]

### Fixed

- Fixed a bug in the changed `just docker clean` `Justfile` command where the command was prefixed with an `@` symbol. That is valid when it's a pure `just` command, but it was changed to a `bash` script.
Expand Down Expand Up @@ -376,7 +378,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.25...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.26...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 @@ -402,3 +404,4 @@ Initial release! 🎉
[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
[2024.26]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.26
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.25
2024.26
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.25"
default: "2024.26"
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: '1605565'
_commit: v2024.25-4-g47d6194
_src_path: .
admin_email: admin@example.com
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="7c65a35a6c20a4e30647d34226a3b23a83b3912adf6f56c29c0b0f8a7525b401",
default="af9442aaee4996365c139587187700ddb04ade378bde5b3fda6c5fa09e1058d5",
)

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: 69331a8
_commit: v2024.25-4-g2f61e7a
_src_path: .
admin_email: admin@example.com
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="520e0a82ea422667b38f67fb5c30699c075a4a41b2ac2d9f7bd32adb8caa0f79",
default="89e56dc1b11921ccf0ddc62efc6cf9175337b314fa5c42f9289abdeed2beb1d1",
)

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: d617576
_commit: v2024.25-4-gac13eb8
_src_path: .
admin_email: admin@example.com
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="724d4063161d49a95b2c76add1bd696be54daf5ccb54366f6734d488304860ee",
default="a9945879c7758928ebc1ae8bc968dbbc34a9ec677a19c9e5036776eeddd7f917",
)

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.25"
current_version = "2024.26"
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.25"
assert version == "2024.26"

0 comments on commit 1befe30

Please sign in to comment.