Skip to content

Commit

Permalink
🔖 bump version 2024.43 -> 2024.44 (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 5, 2024
1 parent f17fa62 commit 7f02715
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.44]

### Changed

- Add `--constraint requirements.txt` to the compiling of the two extra requirements files, to constrain the dependencies to the versions specified in the primary requirements file.
Expand Down Expand Up @@ -571,7 +573,7 @@ Initial release! 🎉

- Josh Thomas <[email protected]> (maintainer)

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.43...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.44...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 @@ -615,3 +617,4 @@ Initial release! 🎉
[2024.41]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.41
[2024.42]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.42
[2024.43]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.43
[2024.44]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.44
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.43
2024.44
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.43"
default: "2024.44"
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: f8672ee
_commit: v2024.43-7-ge35e522
_src_path: .
admin_email: [email protected]
author_email: [email protected]
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="9ad065fdf7f6cd4f1770614b143eb34c7bed157a28944183d9f9350885b9f9f1",
default="3e8b7dd31397cf88f629a9772904c2ce44323095f84ce0116dc206090a7a1735",
)

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: 1948d02
_commit: v2024.43-7-g50213a6
_src_path: .
admin_email: [email protected]
author_email: [email protected]
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="c0038ad1c6e3eaa39a35060a60d4afddca64e1bbd2007762f20ff13ed0969e60",
default="8b0099803a55b345739c4f98c62a5c1e7732d793349be130d3afcf97174d4e18",
)

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: f6ea40f
_commit: v2024.43-7-g6101c25
_src_path: .
admin_email: [email protected]
author_email: [email protected]
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="cc341942cfab271a65b8eb36e69202d31336c270d7a0a6dba6c9259ed198e869",
default="8bceba9708f602297601a40b1effcd3696b86d166fbdd695250af988728d01a1",
)

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.43"
current_version = "2024.44"
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.43"
assert version == "2024.44"

0 comments on commit 7f02715

Please sign in to comment.