Skip to content

Commit

Permalink
🔖 bump version 2024.3 -> 2024.4 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Feb 17, 2024
1 parent 15f2087 commit 7a7a728
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 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.4]

### Changed

- All GitHub Actions steps have been updated to the latest versions.
Expand Down Expand Up @@ -85,7 +87,8 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.3...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.4...HEAD
[2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1
[2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2
[2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3
[2024.4]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.4
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.3
2024.4
2 changes: 1 addition & 1 deletion copier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _secret_questions:
_subdirectory: src/django_twc_project

template_version:
default: "2024.3"
default: "2024.4"
when: false

# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requires-python = ">= 3.8"
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2024.3"
current_version = "2024.4"
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.3"
assert version == "2024.4"


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

assert version == "2024.3"
assert version == "2024.4"

0 comments on commit 7a7a728

Please sign in to comment.