File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ license = {file = "LICENSE"}
6767name = " django-simple-nav"
6868readme = " README.md"
6969requires-python = " >=3.10"
70- version = " 0.14 .0"
70+ version = " 0.15 .0"
7171
7272[project .optional-dependencies ]
7373jinja2 = [
@@ -89,7 +89,7 @@ include = ["src"]
8989[tool .bumpver ]
9090commit = true
9191commit_message = " :bookmark: bump version {old_version} -> {new_version}"
92- current_version = " 0.14 .0"
92+ current_version = " 0.15 .0"
9393push = false # set to false for CI
9494tag = false
9595version_pattern = " MAJOR.MINOR.PATCH[PYTAGNUM]"
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- __version__ = "0.14 .0"
3+ __version__ = "0.15 .0"
Original file line number Diff line number Diff line change 44
55
66def test_version ():
7- assert __version__ == "0.14 .0"
7+ assert __version__ == "0.15 .0"
You can’t perform that action at this time.
0 commit comments