Skip to content

Commit 089b335

Browse files
🔖 bump version 2024.21 -> 2024.22 (#100)
1 parent 1fdb1b9 commit 089b335

File tree

12 files changed

+18
-15
lines changed

12 files changed

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

2224
- Added ruff to template's `pyproject.toml` under dev extras.
@@ -223,7 +225,7 @@ Initial release! 🎉
223225

224226
- Josh Thomas <[email protected]> (maintainer)
225227

226-
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.21...HEAD
228+
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.22...HEAD
227229
[2024.1]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.1
228230
[2024.2]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.2
229231
[2024.3]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.3
@@ -245,3 +247,4 @@ Initial release! 🎉
245247
[2024.19]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.19
246248
[2024.20]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.20
247249
[2024.21]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.21
250+
[2024.22]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.22

VERSION

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

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.21"
14+
default: "2024.22"
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: 2c6af1e
2+
_commit: v2024.21-15-g0e1088f
33
_src_path: .
44
author_email: [email protected]
55
author_name: John Doe

examples/calver_month/.copier/package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 621e2dd
2+
_commit: v2024.21-15-g388fbc2
33
_src_path: .
44
author_email: [email protected]
55
author_name: John Doe
6-
current_version: 2024.8.1
6+
current_version: 2024.7.1
77
django_versions:
88
- '4.2'
99
- '5.0'

examples/calver_month/RELEASING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ When it comes time to cut a new release, follow these steps:
44

55
1. Create a new git branch off of `main` for the release.
66

7-
Prefer the convention `release-<version>`, where `<version>` is the next incremental version number (e.g. `release-v2024.8.1` for version 2024.8.1).
7+
Prefer the convention `release-<version>`, where `<version>` is the next incremental version number (e.g. `release-v2024.7.1` for version 2024.7.1).
88

99
```shell
1010
git checkout -b release-v<version>
@@ -58,7 +58,7 @@ When it comes time to cut a new release, follow these steps:
5858

5959
6. Draft a [new release](https://github.com/example_owner/calver-mminc1-project/releases/new) on GitHub.
6060

61-
Use the version number with a leading `v` as the tag name (e.g. `v2024.8.1`).
61+
Use the version number with a leading `v` as the tag name (e.g. `v2024.7.1`).
6262

6363
Allow GitHub to generate the release title and release notes, using the 'Generate release notes' button above the text box. If this is a final release coming from a tagged release (or multiple tagged releases), make sure to copy the release notes from the previous tagged release(s) to the new release notes (after the release notes already generated for this final release).
6464

examples/calver_month/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Source = "https://github.com/example_owner/calver-mminc1-project"
7474
[tool.bumpver]
7575
commit = true
7676
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
77-
current_version = "2024.8.1"
77+
current_version = "2024.7.1"
7878
push = false # set to false for CI
7979
tag = false
8080
version_pattern = "YYYY.MM.INC1"
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "2024.8.1"
3+
__version__ = "2024.7.1"

examples/calver_month/tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
def test_version():
7-
assert __version__ == "2024.8.1"
7+
assert __version__ == "2024.7.1"

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: b192c14
2+
_commit: v2024.21-15-g3337007
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.21"
18+
current_version = "2024.22"
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.21"
17+
assert version == "2024.22"
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.21"
25+
assert version == "2024.22"

0 commit comments

Comments
 (0)