Skip to content

Commit

Permalink
🔖 bump version 2024.17 -> 2024.18 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Apr 30, 2024
1 parent fe35cb7 commit b207c49
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.18]

### Added

- Added two CSS utilities previously set in the shared central Tailwind CSS config: `x-cloak` for hiding certain Alpine.js elements until Alpine has been initialized and the `htmx-indicator` for controlling the Z-index of the loading indicator.
Expand Down Expand Up @@ -293,7 +295,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.17...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.18...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 @@ -311,3 +313,4 @@ Initial release! 🎉
[2024.15]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.15
[2024.16]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.16
[2024.17]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.17
[2024.18]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.18
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.17
2024.18
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.17"
default: "2024.18"
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: e9707e5
_commit: v2024.17-6-gdec548a
_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 @@ -223,7 +223,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="7742521cdd3d05dba4a791085af1bae4c6b0c9e51db349f3f947862d78a7974d",
default="cab3e52771db585519a16b0e2c673f3f46dc05b8d4ddbe07c19b8db7af32dbb5",
)

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: 427cb98
_commit: v2024.17-6-g6519d04
_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 @@ -223,7 +223,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="d606d0b928b16c2d9d8fe6782d6f75985d042e8d0c0757e0065d416d891d19cd",
default="489d100be8acc3d621abb5f2253b63a5a9de87b6f5b4b2e0779fc03d7efec493",
)

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: b0df3c6
_commit: v2024.17-6-ge9409f3
_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 @@ -224,7 +224,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="5b49b85a94b75e883ec5dcf29d5b10d7f60955c1e2d0be78babc184437e26462",
default="2f49d743762a2be08d6d15db311133308840724d43593e7963540d50be721de4",
)

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.17"
current_version = "2024.18"
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.17"
assert version == "2024.18"

0 comments on commit b207c49

Please sign in to comment.