Skip to content

Commit

Permalink
🔖 bump version 2024.36 -> 2024.37 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 2, 2024
1 parent 120eecf commit 00d22de
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.37]

### Added

- Created a new GitHub Team for documentation and added it to the `CODEOWNERS` file in the project template.
Expand Down Expand Up @@ -499,7 +501,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.36...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.37...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 Down Expand Up @@ -536,3 +538,4 @@ Initial release! 🎉
[2024.34]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.34
[2024.35]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.35
[2024.36]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.36
[2024.37]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.37
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.36
2024.37
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.36"
default: "2024.37"
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: 691f870
_commit: v2024.36-7-gd302c2e
_src_path: .
admin_email: admin@example.com
author_email: jdoe@example.com
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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="ff5d7cd02d9bfdf431c3dbd0d0756246616dc67478d6986c396b8ff65b7d9a9a",
default="cf5797a4d6109b6aeb05170e99d8c866cefcc949899a91aaf20db2305f040689",
)

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: f1e98d0
_commit: v2024.36-7-gdb602a3
_src_path: .
admin_email: admin@example.com
author_email: jdoe@example.com
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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="0056c3c4b2b513ed1518d5b3a218760f8755c81dbeb72b29768d73990e0cccb0",
default="8b511092e9161301466a0465baa3201ef2c543ad54ae0592888f6046c03add2e",
)

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: d34c78f
_commit: v2024.36-7-g17d8ff9
_src_path: .
admin_email: admin@example.com
author_email: jdoe@example.com
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 @@ -232,7 +232,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="44fe78fb44190f28c38a642089becf3c2ab3f8271e87b44acb7a2480fc0ce612",
default="012456c6e781f4d64e2a90e43a771c4b3252fc439d9d4f0e863dbb680cb6b222",
)

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.36"
current_version = "2024.37"
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.36"
assert version == "2024.37"

0 comments on commit 00d22de

Please sign in to comment.