Skip to content

Commit

Permalink
🔖 bump version 2024.12 -> 2024.13 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed Apr 4, 2024
1 parent 733908a commit e19fee3
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 12 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.13]

### Added

- A `.env.prod` template to be used with 1Password's `op` CLI tool.
Expand Down Expand Up @@ -228,7 +230,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.12...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.13...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
Expand All @@ -241,3 +243,4 @@ Initial release! 🎉
[2024.10]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.10
[2024.11]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.11
[2024.12]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.12
[2024.13]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.13
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.12
2024.13
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.12"
default: "2024.13"
when: false

# ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/default/.copier/project.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: 08fffff
_commit: v2024.12-5-gfc5d9d8
_src_path: .
admin_email: admin@example.com
author_name: John Doe
Expand Down
2 changes: 1 addition & 1 deletion examples/default/default/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations

__version__ = "2024.4.1"
__template_version__ = "2024.12"
__template_version__ = "2024.13"
2 changes: 1 addition & 1 deletion examples/postgis/.copier/project.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: d7696b5
_commit: v2024.12-5-g8fd5633
_src_path: .
admin_email: admin@example.com
author_name: John Doe
Expand Down
2 changes: 1 addition & 1 deletion examples/postgis/default/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations

__version__ = "2024.4.1"
__template_version__ = "2024.12"
__template_version__ = "2024.13"
2 changes: 1 addition & 1 deletion examples/with_vite/.copier/project.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: 7b75d7f
_commit: v2024.12-5-g9a0222e
_src_path: .
admin_email: admin@example.com
author_name: John Doe
Expand Down
2 changes: 1 addition & 1 deletion examples/with_vite/with_vite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations

__version__ = "2024.4.1"
__template_version__ = "2024.12"
__template_version__ = "2024.13"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ requires-python = ">= 3.8"
[tool.bumpver]
commit = true
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
current_version = "2024.12"
current_version = "2024.13"
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.12"
assert version == "2024.13"


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

assert version == "2024.12"
assert version == "2024.13"

0 comments on commit e19fee3

Please sign in to comment.