Skip to content

Commit

Permalink
🔖 bump version 2024.22 -> 2024.23 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored May 9, 2024
1 parent 134d7c5 commit 96b7de8
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.23]

### Removed

- Removed the `PORT` environment variable from the Fly.io config. It was unused and not needed.
Expand Down Expand Up @@ -345,7 +347,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.22...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.23...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 @@ -368,3 +370,4 @@ Initial release! 🎉
[2024.20]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.20
[2024.21]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.21
[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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.22
2024.23
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.22"
default: "2024.23"
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: dab1993
_commit: v2024.22-5-g0958b19
_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="2ec003483ea12c391bdce88391a1d8095cb2a8c9c1e38c7dab441e134aced440",
default="4990cb4f57beb53431ae0753fab6db830c66bd58b350a19a26925a60f4f1daf5",
)

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: 1209bcd
_commit: v2024.22-5-g931e97b
_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="cb37c2495744f930bed22b1c2fdf6e4597092899a627e610e21ec647727dfedc",
default="3828b9076c484738ed48c25fa94fb0266bb46ce22bf675c5ddb6e733b2dafc1c",
)

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: baf80aa
_commit: v2024.22-5-g901a88b
_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="e6d03d2e1b719fb94be783de11ef5b8bb1e3d12f5198d975dbead6554e91626f",
default="5e7ac7d943ab8e5f0e21e3c15fdc40579091747e48d81b27b2e47e0ddb5ece59",
)

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.8"
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2024.22"
current_version = "2024.23"
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.22"
assert version == "2024.23"

0 comments on commit 96b7de8

Please sign in to comment.