Skip to content

Commit

Permalink
🔖 bump version 2024.11 -> 2024.12 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed Apr 3, 2024
1 parent c1fe7bd commit cd378f8
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 12 deletions.
9 changes: 8 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.12]

### Changed

- Added more files to `coverage` exclude list.
Expand All @@ -26,6 +28,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Template now has a `CODEOWNERS` file.

### Removed

- `ENABLE_SENTRY` environment variable has been removed from template in favor of checking for the existence of `SENTRY_DSN`.

### Fixed

- Moved the `--skip-checks` flag in `django-tailwind-cli`'s build command in CI/CD.
Expand Down Expand Up @@ -214,7 +220,7 @@ Initial release! 🎉

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

[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.11...HEAD
[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.12...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 @@ -226,3 +232,4 @@ Initial release! 🎉
[2024.9]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.9
[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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.11
2024.12
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.11"
default: "2024.12"
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: 3be1a99
_commit: v2024.11-17-g715b949
_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.11"
__template_version__ = "2024.12"
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: 30e9aa9
_commit: v2024.11-17-g688aa8c
_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.11"
__template_version__ = "2024.12"
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: 6b4454a
_commit: v2024.11-17-gd2c1f3a
_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.11"
__template_version__ = "2024.12"
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.11"
current_version = "2024.12"
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.11"
assert version == "2024.12"


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

assert version == "2024.11"
assert version == "2024.12"

0 comments on commit cd378f8

Please sign in to comment.