From fc16257884e6e54c6fbe163108a99271c7ded91d Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Tue, 16 Jul 2024 14:23:34 -0400 Subject: [PATCH] :bookmark: bump version 0.6.0 -> 0.7.0 (#108) --- .copier/package.yml | 2 +- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- src/django_simple_nav/__init__.py | 2 +- tests/test_version.py | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.copier/package.yml b/.copier/package.yml index 7bd6e0a..b532662 100644 --- a/.copier/package.yml +++ b/.copier/package.yml @@ -3,7 +3,7 @@ _commit: v2024.20 _src_path: gh:westerveltco/django-twc-package author_email: josh@joshthomas.dev author_name: Josh Thomas -current_version: 0.6.0 +current_version: 0.7.0 django_versions: - '4.2' - '5.0' diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f2e92b..21ae5c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [0.7.0] + ### Added - `NavItem` and `NavGroup` now both have a `get_context_data` that returns the context needed for template rendering. @@ -143,7 +145,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) - Jeff Triplett [@jefftriplett](https://github.com/jefftriplett) -[unreleased]: https://github.com/westerveltco/django-simple-nav/compare/v0.6.0...HEAD +[unreleased]: https://github.com/westerveltco/django-simple-nav/compare/v0.7.0...HEAD [0.1.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.1.0 [0.2.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.2.0 [0.3.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.3.0 @@ -151,3 +153,4 @@ Initial release! 🎉 [0.5.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.5.0 [0.5.1]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.5.1 [0.6.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.6.0 +[0.7.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.7.0 diff --git a/pyproject.toml b/pyproject.toml index f22486c..2e0824d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ stubPath = "src/stubs" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.6.0" +current_version = "0.7.0" push = false # set to false for CI tag = false version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" diff --git a/src/django_simple_nav/__init__.py b/src/django_simple_nav/__init__.py index 34157b2..dd2d37b 100644 --- a/src/django_simple_nav/__init__.py +++ b/src/django_simple_nav/__init__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.6.0" +__version__ = "0.7.0" diff --git a/tests/test_version.py b/tests/test_version.py index eb21f3d..89a32c7 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.6.0" + assert __version__ == "0.7.0"