Skip to content

Commit ee366cc

Browse files
🔖 bump version 2024.22 -> 2024.23 (#104)
1 parent 236b591 commit ee366cc

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.23]
21+
2022
### Added
2123

2224
- In preparation of it's upcoming release, Python 3.13 is now available as an option when generating template.
@@ -234,7 +236,7 @@ Initial release! 🎉
234236

235237
- Josh Thomas <[email protected]> (maintainer)
236238

237-
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.22...HEAD
239+
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.23...HEAD
238240
[2024.1]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.1
239241
[2024.2]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.2
240242
[2024.3]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.3
@@ -257,3 +259,4 @@ Initial release! 🎉
257259
[2024.20]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.20
258260
[2024.21]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.21
259261
[2024.22]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.22
262+
[2024.23]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.23

VERSION

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

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.22"
14+
default: "2024.23"
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: 8bc9339
2+
_commit: v2024.22-9-g869184b
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: cdc89fa
2+
_commit: v2024.22-9-gee84465
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: d767ef6
2+
_commit: v2024.22-9-ge62698b
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.22"
18+
current_version = "2024.23"
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.22"
17+
assert version == "2024.23"
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.22"
25+
assert version == "2024.23"

0 commit comments

Comments
 (0)