Skip to content

Commit a738c9a

Browse files
🔖 bump version 2024.8 -> 2024.9 (#90)
1 parent 8289f2e commit a738c9a

File tree

9 files changed

+13
-10
lines changed

9 files changed

+13
-10
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.9]
21+
2022
### Changed
2123

2224
- `django_browser_reload` middleware now only loaded in development (`DEBUG=True`).
@@ -176,7 +178,7 @@ Initial release! 🎉
176178

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

179-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.8...HEAD
181+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.9...HEAD
180182
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
181183
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
182184
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
@@ -185,3 +187,4 @@ Initial release! 🎉
185187
[2024.6]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.6
186188
[2024.7]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.7
187189
[2024.8]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.8
190+
[2024.9]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.9

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.8
1+
2024.9

copier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _secret_questions:
99
_subdirectory: src/django_twc_project
1010

1111
template_version:
12-
default: "2024.8"
12+
default: "2024.9"
1313
when: false
1414

1515
# ----------------------------------------------------------------------

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: 7df26ad
2+
_commit: v2024.8-29-g97820f0
33
_src_path: .
44
admin_email: [email protected]
55
author_name: John Doe
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import annotations
22

33
__version__ = "2024.4.1"
4-
__template_version__ = "2024.8"
4+
__template_version__ = "2024.9"

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: ae05efa
2+
_commit: v2024.8-29-g996c446
33
_src_path: .
44
admin_email: [email protected]
55
author_name: John Doe
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import annotations
22

33
__version__ = "2024.4.1"
4-
__template_version__ = "2024.8"
4+
__template_version__ = "2024.9"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ requires-python = ">= 3.8"
1818
[tool.bumpver]
1919
commit = true
2020
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
21-
current_version = "2024.8"
21+
current_version = "2024.9"
2222
push = false # set to false for CI
2323
tag = false
2424
version_pattern = "YYYY.INC1"

tests/test_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ def test_copier_yml_version():
1414

1515
version = copier_yml["template_version"]["default"]
1616

17-
assert version == "2024.8"
17+
assert version == "2024.9"
1818

1919

2020
def test_VERSION_version():
2121
file = BASE_DIR / "VERSION"
2222
with open(file, encoding="utf-8") as f:
2323
version = f.read().strip()
2424

25-
assert version == "2024.8"
25+
assert version == "2024.9"

0 commit comments

Comments
 (0)