Skip to content

Commit

Permalink
🔖 bump version 2024.45 -> 2024.46 (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Aug 7, 2024
1 parent c19a8c7 commit 9851ede
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.46]

### Added

- Added `pytest-cov` as dev dependency.
Expand Down Expand Up @@ -595,7 +597,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.45...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.46...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 @@ -641,3 +643,4 @@ Initial release! 🎉
[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
[2024.45]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.45
[2024.46]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.46
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.45
2024.46
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.45"
default: "2024.46"
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: 40d2aed
_commit: v2024.45-9-g7b76a65
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="b813ec1cdaf555b1de80e564e92f95bcbc927b5918947016f49b972727ce3940",
default="9e71dd9402a0162d8a5fd5eed0537053e2eba14844474a6ba34798be6037b32a",
)

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: d7abf25
_commit: v2024.45-9-gd609225
_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 @@ -230,7 +230,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="fdd77ee3103ac68a2c153ed3bd50936c1684d26fe6e5efd945479c24eb6ef5a0",
default="159540e3bb00ccebe12976d8b00136a628738c2662b1f978a127deddfbfea9e1",
)

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: f2968d0
_commit: v2024.45-9-g890f38f
_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 @@ -231,7 +231,7 @@

SECRET_KEY = env.str(
"SECRET_KEY",
default="fe1d783ac25f94843b7b8b3934d52001b2cfeda97d1c69eefdb3519fe30f34ae",
default="8f8123e785de877f88dc81daf0ee1a4cacba5a5aed0b47a53fa9bafde7d37a6f",
)

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.45"
current_version = "2024.46"
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.45"
assert version == "2024.46"

0 comments on commit 9851ede

Please sign in to comment.