Skip to content

Commit 4f2528b

Browse files
🔖 bump version 2024.29 -> 2024.30 (#138)
1 parent 7f5cb7a commit 4f2528b

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

2224
- Dropped the `python -m` prefix in `gha_matrix` nox session.
@@ -313,7 +315,7 @@ Initial release! 🎉
313315

314316
- Josh Thomas <[email protected]> (maintainer)
315317

316-
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.29...HEAD
318+
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.30...HEAD
317319
[2024.1]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.1
318320
[2024.2]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.2
319321
[2024.3]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.3
@@ -343,3 +345,4 @@ Initial release! 🎉
343345
[2024.27]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.27
344346
[2024.28]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.28
345347
[2024.29]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.29
348+
[2024.30]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.30

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.29
1+
2024.30

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.29"
14+
default: "2024.30"
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: v2024.28-5-g24f502a
2+
_commit: v2024.29-6-gb88a834
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: v2024.28-5-g3c5bbbc
2+
_commit: v2024.29-6-g1985bda
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: v2024.28-5-g8a236dc
2+
_commit: v2024.29-6-g42e56c2
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
@@ -14,7 +14,7 @@ requires-python = ">= 3.9"
1414
[tool.bumpver]
1515
commit = true
1616
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
17-
current_version = "2024.29"
17+
current_version = "2024.30"
1818
push = false # set to false for CI
1919
tag = false
2020
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.29"
17+
assert version == "2024.30"
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.29"
25+
assert version == "2024.30"

0 commit comments

Comments
 (0)