From 6ace4c288f6aa6af71d6e4858ae780ce3e24411e Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 1 Aug 2024 14:05:28 -0500 Subject: [PATCH] :bookmark: bump version 0.9.0 -> 0.10.0 (3rd times a charm) --- pyproject.toml | 2 +- src/django_simple_nav/__init__.py | 2 +- tests/test_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7fc6e25..4fa017b 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.9.0" +current_version = "0.10.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 3f0fbb0..b8f0f7e 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.9.0" +__version__ = "0.10.0" diff --git a/tests/test_version.py b/tests/test_version.py index 0df30ca..003cf9d 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.9.0" + assert __version__ == "0.10.0"