Skip to content

Commit 7a7a728

Browse files
🔖 bump version 2024.3 -> 2024.4 (#36)
1 parent 15f2087 commit 7a7a728

File tree

5 files changed

+9
-6
lines changed

5 files changed

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

2224
- All GitHub Actions steps have been updated to the latest versions.
@@ -85,7 +87,8 @@ Initial release! 🎉
8587

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

88-
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.3...HEAD
90+
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.4...HEAD
8991
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
9092
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
9193
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
94+
[2024.4]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.4

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.3
1+
2024.4

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.3"
12+
default: "2024.4"
1313
when: false
1414

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ requires-python = ">= 3.8"
1919
[tool.bumpver]
2020
commit = true
2121
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
22-
current_version = "2024.3"
22+
current_version = "2024.4"
2323
push = false # set to false for CI
2424
tag = false
2525
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.3"
17+
assert version == "2024.4"
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.3"
25+
assert version == "2024.4"

0 commit comments

Comments
 (0)