Skip to content

Commit

Permalink
🔖 bump version 2024.30 -> 2024.31 (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Jul 15, 2024
1 parent e120b32 commit 14bb8d6
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.31]

### Removed

- Remove `mkdocs.yml` config from template. This is now being handled from the central docs repo and no longer needed.
Expand Down Expand Up @@ -433,7 +435,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.30...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.31...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 @@ -464,3 +466,4 @@ Initial release! 🎉
[2024.28]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.28
[2024.29]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.29
[2024.30]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.30
[2024.31]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.31
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.30
2024.31
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.30"
default: "2024.31"
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: 572201a
_commit: v2024.30-6-g982870a
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="045e07f8729db3ff7061ba9195c2dfaade1df68160e5c98bbdb4af059eea6fd2",
default="4f401a3820b5212d71d539e77297d2e98502540fb7ee504a5d7e0f200770aef5",
)

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: 5de950b
_commit: v2024.30-6-g19632f4
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="04acf13ed8c0119fba94317578e153fe0026c91910911287fccd85f878b82757",
default="05b444adedac57e7763e7ba41da6608fabba3cef1fb4cd36505d36d7b47f0ed8",
)

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: 6d7d495
_commit: v2024.30-6-g9a33b68
_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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="0f727c57faf1e16d252a004ad9bcb9b005f6cda314e79b34ac891023cfdfa86b",
default="842957cff5dd245250e3818555ce701b5fba7adf4326b0ec7b2b3e8616e90b7f",
)

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.30"
current_version = "2024.31"
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.30"
assert version == "2024.31"

0 comments on commit 14bb8d6

Please sign in to comment.