Skip to content

Commit 916a2f2

Browse files
🔖 bump version 2024.23 -> 2024.24 (#106)
1 parent 386c3f7 commit 916a2f2

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
lines changed

CHANGELOG.md

+4-1
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.24]
21+
2022
### Fixed
2123

2224
- Added `workflow_call` trigger to `test.yml` GitHub Actions workflow, to allow for the `release.yml` workflow to use it before cutting a new release.
@@ -240,7 +242,7 @@ Initial release! 🎉
240242

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

243-
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.23...HEAD
245+
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.24...HEAD
244246
[2024.1]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.1
245247
[2024.2]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.2
246248
[2024.3]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.3
@@ -264,3 +266,4 @@ Initial release! 🎉
264266
[2024.21]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.21
265267
[2024.22]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.22
266268
[2024.23]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.23
269+
[2024.24]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.24

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.23
1+
2024.24

copier.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ _min_copier_version: "9.1.0"
1111
_subdirectory: src/django_twc_package
1212

1313
template_version:
14-
default: "2024.23"
14+
default: "2024.24"
1515
when: false
1616

1717
# ----------------------------------------------------------------------

examples/calver_inc/.copier/package.yml

+1-1
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: 1632d10
2+
_commit: v2024.23-5-g0373bc3
33
_src_path: .
44
author_email: [email protected]
55
author_name: John Doe

examples/calver_month/.copier/package.yml

+1-1
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: '6274879'
2+
_commit: v2024.23-5-g229e56c
33
_src_path: .
44
author_email: [email protected]
55
author_name: John Doe

examples/default/.copier/package.yml

+1-1
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: 1b928af
2+
_commit: v2024.23-5-ge8ab89a
33
_src_path: .
44
author_email: [email protected]
55
author_name: John Doe

pyproject.toml

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

tests/test_version.py

+2-2
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.23"
17+
assert version == "2024.24"
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.23"
25+
assert version == "2024.24"

0 commit comments

Comments
 (0)