Skip to content

Commit 32b6052

Browse files
🔖 bump version 0.12.0 -> 0.13.0 (#190)
1 parent c561251 commit 32b6052

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.copier/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _commit: v2024.29
33
_src_path: gh:westerveltco/django-twc-package
44
author_email: josh@joshthomas.dev
55
author_name: Josh Thomas
6-
current_version: 0.12.0
6+
current_version: 0.13.0
77
django_versions:
88
- '4.2'
99
- '5.0'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
1818

1919
## [Unreleased]
2020

21+
## [0.13.0]
22+
2123
### Added
2224

2325
- Support for the `django.templates.backends.jinja2.Jinja2` template engine backend.
@@ -212,3 +214,4 @@ Initial release! 🎉
212214
[0.10.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.10.0
213215
[0.11.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.11.0
214216
[0.12.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.12.0
217+
[0.13.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.13.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ include = ["src"]
8080
[tool.bumpver]
8181
commit = true
8282
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
83-
current_version = "0.12.0"
83+
current_version = "0.13.0"
8484
push = false # set to false for CI
8585
tag = false
8686
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/django_simple_nav/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.12.0"
3+
__version__ = "0.13.0"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
def test_version():
7-
assert __version__ == "0.12.0"
7+
assert __version__ == "0.13.0"

0 commit comments

Comments
 (0)