From 88fa17f5f71a0972a794f3cf1a2dfb095b66f1f3 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Wed, 21 Aug 2024 15:18:33 -0500 Subject: [PATCH] :bookmark: bump version 0.10.0 -> 0.11.0 (#127) --- .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 b8c9c16..c3c6391 100644 --- a/.copier/package.yml +++ b/.copier/package.yml @@ -3,7 +3,7 @@ _commit: v2024.23 _src_path: gh:westerveltco/django-twc-package author_email: josh@joshthomas.dev author_name: Josh Thomas -current_version: 0.10.0 +current_version: 0.11.0 django_versions: - '4.2' - '5.0' diff --git a/CHANGELOG.md b/CHANGELOG.md index a05baaf..544c7aa 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.11.0] + ### Fixed - Checking whether a `NavItem` or `NavGroup` is active now takes into account the URL scheme and domain name for both the nav item and request. @@ -172,7 +174,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) - Jeff Triplett [@jefftriplett](https://github.com/jefftriplett) -[unreleased]: https://github.com/westerveltco/django-simple-nav/compare/v0.10.0...HEAD +[unreleased]: https://github.com/westerveltco/django-simple-nav/compare/v0.11.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 @@ -184,3 +186,4 @@ Initial release! 🎉 [0.8.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.8.0 [0.9.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.9.0 [0.10.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.10.0 +[0.11.0]: https://github.com/westerveltco/django-simple-nav/releases/tag/v0.11.0 diff --git a/pyproject.toml b/pyproject.toml index 4fa017b..1a89159 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,7 +82,7 @@ stubPath = "src/stubs" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.10.0" +current_version = "0.11.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 b8f0f7e..27047e1 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.10.0" +__version__ = "0.11.0" diff --git a/tests/test_version.py b/tests/test_version.py index 003cf9d..867f30a 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.10.0" + assert __version__ == "0.11.0"