Skip to content

Commit 98f1262

Browse files
🔖 bump version 0.2.0 -> 0.3.0 (#37)
1 parent f4150c8 commit 98f1262

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
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.13
33
_src_path: gh:westerveltco/django-twc-package
44
author_email: josh@joshthomas.dev
55
author_name: Josh Thomas
6-
current_version: 0.2.0
6+
current_version: 0.3.0
77
django_versions:
88
- '3.2'
99
- '4.2'

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.3.0]
22+
2123
### Added
2224

2325
- `NavGroup` and `NavItem` now has a new `extra_context` attribute. This allows for passing additional context to the template when rendering the navigation, either via the extra attribute (`item.foo`) or the `extra_context` attribute itself (`item.extra_context.foo`).
@@ -64,6 +66,7 @@ Initial release! 🎉
6466
- Josh Thomas <josh@joshthomas.dev> (maintainer)
6567
- Jeff Triplett [@jefftriplett](https://github.com/jefftriplett)
6668

67-
[unreleased]: https://github.com/westerveltco/django-simple-nav/compare/v0.2.0...HEAD
69+
[unreleased]: https://github.com/westerveltco/django-simple-nav/compare/v0.3.0...HEAD
6870
[0.1.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.1.0
6971
[0.2.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.2.0
72+
[0.3.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.3.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Source = "https://github.com/westerveltco/django-simple-nav"
7070
[tool.bumpver]
7171
commit = true
7272
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
73-
current_version = "0.2.0"
73+
current_version = "0.3.0"
7474
push = false # set to false for CI
7575
tag = false
7676
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,4 +1,4 @@
11
from __future__ import annotations
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.3.0"
44
__template_version__ = "2024.13"

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.2.0"
7+
assert __version__ == "0.3.0"

0 commit comments

Comments
 (0)