Skip to content

Commit 752ce0c

Browse files
🔖 bump version 0.14.0 -> 0.15.0 (#218)
1 parent 8f5253a commit 752ce0c

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.15.0]
22+
2123
### Added
2224

2325
- `Nav` can now be constructed directly with `template_name` and `items` keyword arguments, without needing to subclass it.
@@ -222,7 +224,7 @@ Initial release! 🎉
222224
- Josh Thomas <josh@joshthomas.dev> (maintainer)
223225
- Jeff Triplett [@jefftriplett](https://github.com/jefftriplett)
224226

225-
[unreleased]: https://github.com/joshuadavidthomas/django-simple-nav/compare/v0.14.0...HEAD
227+
[unreleased]: https://github.com/joshuadavidthomas/django-simple-nav/compare/v0.15.0...HEAD
226228
[0.1.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.1.0
227229
[0.2.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.2.0
228230
[0.3.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.3.0
@@ -238,3 +240,4 @@ Initial release! 🎉
238240
[0.12.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.12.0
239241
[0.13.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.13.0
240242
[0.14.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.14.0
243+
[0.15.0]: https://github.com/joshuadavidthomas/django-simple-nav/releases/tag/v0.15.0

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ license = {file = "LICENSE"}
6767
name = "django-simple-nav"
6868
readme = "README.md"
6969
requires-python = ">=3.10"
70-
version = "0.14.0"
70+
version = "0.15.0"
7171

7272
[project.optional-dependencies]
7373
jinja2 = [
@@ -89,7 +89,7 @@ include = ["src"]
8989
[tool.bumpver]
9090
commit = true
9191
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
92-
current_version = "0.14.0"
92+
current_version = "0.15.0"
9393
push = false # set to false for CI
9494
tag = false
9595
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.14.0"
3+
__version__ = "0.15.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.14.0"
7+
assert __version__ == "0.15.0"

0 commit comments

Comments
 (0)