Skip to content

Commit

Permalink
🔖 bump version 2024.29 -> 2024.30 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Oct 10, 2024
1 parent 7f5cb7a commit 4f2528b
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [2024.30]

### Fixed

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

- Josh Thomas <josh@joshthomas.dev> (maintainer)

[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.29...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-package/compare/v2024.30...HEAD
[2024.1]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.1
[2024.2]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.2
[2024.3]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.3
Expand Down Expand Up @@ -343,3 +345,4 @@ Initial release! 🎉
[2024.27]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.27
[2024.28]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.28
[2024.29]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.29
[2024.30]: https://github.com/westerveltco/django-twc-package/releases/tag/v2024.30
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.29
2024.30
2 changes: 1 addition & 1 deletion copier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ _min_copier_version: "9.1.0"
_subdirectory: src/django_twc_package

template_version:
default: "2024.29"
default: "2024.30"
when: false

# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/calver_inc/.copier/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v2024.28-5-g24f502a
_commit: v2024.29-6-gb88a834
_src_path: .
author_email: johndoe@example.com
author_name: John Doe
Expand Down
2 changes: 1 addition & 1 deletion examples/calver_month/.copier/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v2024.28-5-g3c5bbbc
_commit: v2024.29-6-g1985bda
_src_path: .
author_email: johndoe@example.com
author_name: John Doe
Expand Down
2 changes: 1 addition & 1 deletion examples/default/.copier/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v2024.28-5-g8a236dc
_commit: v2024.29-6-g42e56c2
_src_path: .
author_email: johndoe@example.com
author_name: John Doe
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ requires-python = ">= 3.9"
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2024.29"
current_version = "2024.30"
push = false # set to false for CI
tag = false
version_pattern = "YYYY.INC1"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ def test_copier_yml_version():

version = copier_yml["template_version"]["default"]

assert version == "2024.29"
assert version == "2024.30"


def test_VERSION_version():
file = BASE_DIR / "VERSION"
with open(file, encoding="utf-8") as f:
version = f.read().strip()

assert version == "2024.29"
assert version == "2024.30"

0 comments on commit 4f2528b

Please sign in to comment.