Skip to content

Commit 5693fbb

Browse files
🔖 bump version 2024.46 -> 2024.47 (#295)
1 parent a1a0cec commit 5693fbb

File tree

11 files changed

+14
-11
lines changed

11 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1717

1818
## [Unreleased]
1919

20+
## [2024.47]
21+
2022
### Changed
2123

2224
- Instead of generating a separate requirements file for both the `dev` and `docs` extras, we now only generate a requirements file for the primary production dependencies and use the ability of `uv pip install` to install directly from a `pyproject.toml` file in development. The production requirements are used as a constraint, so there should be no version mismatches.
@@ -601,7 +603,7 @@ Initial release! 🎉
601603

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

604-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.46...HEAD
606+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.47...HEAD
605607
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
606608
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
607609
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
@@ -648,3 +650,4 @@ Initial release! 🎉
648650
[2024.44]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.44
649651
[2024.45]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.45
650652
[2024.46]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.46
653+
[2024.47]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.47

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.46
1+
2024.47

copier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ _secret_questions:
1313
_subdirectory: src/django_twc_project
1414

1515
template_version:
16-
default: "2024.46"
16+
default: "2024.47"
1717
when: false
1818

1919
# ----------------------------------------------------------------------

examples/default/.copier/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: a938801
2+
_commit: v2024.46-5-g5952d71
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/default/default/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230

231231
SECRET_KEY = env.str(
232232
"SECRET_KEY",
233-
default="6cc3ced56a9409228115577f3f792e1a7bc860e85d89109d1e8d285629fb3d8b",
233+
default="305334f506c5733a0471501d2303325c90cb1db860892f84b146c7a9af662892",
234234
)
235235

236236
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

examples/postgis/.copier/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 34ff656
2+
_commit: v2024.46-5-g7080c2f
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/postgis/default/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230

231231
SECRET_KEY = env.str(
232232
"SECRET_KEY",
233-
default="3c705c129a79a5d08ec51737d8c82a3f10669b0edc9a2ba4c633cdb445ae27da",
233+
default="8773a809f0c617d56a7d7cedb7dc6eb906b4b546cf4f9c3456a3087205b63eda",
234234
)
235235

236236
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

examples/with_vite/.copier/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: f422157
2+
_commit: v2024.46-5-g4b76abc
33
_src_path: .
44
admin_email: [email protected]
55
author_email: [email protected]

examples/with_vite/with_vite/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@
231231

232232
SECRET_KEY = env.str(
233233
"SECRET_KEY",
234-
default="e135df1630c0abfbc94475cc61ff94e55d0e2db55752b073777d663a9ef5fb04",
234+
default="4678cef11a6a557b2480110a95f1d03355a80b692ba77c24ef326c78a1590af9",
235235
)
236236

237237
SECURE_HSTS_INCLUDE_SUBDOMAINS = not DEBUG

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requires-python = ">= 3.9"
1515
[tool.bumpver]
1616
commit = true
1717
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
18-
current_version = "2024.46"
18+
current_version = "2024.47"
1919
push = false # set to false for CI
2020
tag = false
2121
version_pattern = "YYYY.INC1"

0 commit comments

Comments
 (0)