Skip to content

Commit

Permalink
🔖 bump version 2024.21 -> 2024.22 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored May 8, 2024
1 parent 4755da0 commit 77e6daf
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.22]

### Added

- Added "high visibility" label.
Expand Down Expand Up @@ -339,7 +341,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.21...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.22...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 @@ -361,3 +363,4 @@ Initial release! 🎉
[2024.19]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.19
[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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.21
2024.22
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.21"
default: "2024.22"
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: 865e23a
_commit: v2024.21-12-gd3ad591
_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="a14ca186dbbdc68e8a63dce77341f7227cbb6fe7f61df1e0aa99ba2811d3affb",
default="38c8a7945fb014c8f22753fe6c0a140fe6d75acca40339ce0b886413e80c28a7",
)

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: c33a6c1
_commit: v2024.21-12-gfe486a5
_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="2e1fb553a2a0c440b82f2ee258c6a45d3bbc846691b0154e51d259bac8542ba5",
default="536d180361c5bf002a5945df34de22e7489e0e8271639e448a52b32c6eed4d31",
)

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: 2dbf866
_commit: v2024.21-12-g4c5af27
_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="1352e6124f5afef6a08e9f894026b8815a973aa2d75e31dc8d7af14d421adc27",
default="303c82f8891e2fca44b889e839d9beffb0edd2f1052abd051782134bf092c152",
)

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.21"
current_version = "2024.22"
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.21"
assert version == "2024.22"

0 comments on commit 77e6daf

Please sign in to comment.