Skip to content

Commit

Permalink
🔖 bump version 2024.18 -> 2024.19 (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed May 1, 2024
1 parent f8a23a1 commit 5113401
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.19]

### Added

- Added a GitHub Action workflow for syncing labels across all projects using this template.
Expand Down Expand Up @@ -299,7 +301,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.18...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.19...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 @@ -318,3 +320,4 @@ Initial release! 🎉
[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
[2024.19]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.19
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.18
2024.19
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.18"
default: "2024.19"
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: 815901e
_commit: v2024.18-9-g823b207
_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="f6a76a473b189f99c527522c76d962b4c45dae4101bb248e03ffc1e56b030692",
default="35f761105599dd99566534b8b9c0673c9f9afea5ce6efb7e8832390411e1512b",
)

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: 4f3d76b
_commit: v2024.18-9-ge04e872
_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="ad696b8f012d8e4e3e377315fc8325b75a2de237a9c88c782127c581a6dbe4c8",
default="e7784f52a1c85ba03944aa853379fd62cc75951bc73b3ca9560943b7610001de",
)

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: 0c53d2b
_commit: v2024.18-9-g6592e83
_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="00176a898d21f9f2d75d0a475c84e59c647d35d0264d3df0c217b5b2a7745075",
default="96fae1bc4730681d735ffe6380d8f1d93d19b571d2007cd746050afd69c699a3",
)

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.18"
current_version = "2024.19"
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.18"
assert version == "2024.19"

0 comments on commit 5113401

Please sign in to comment.