diff --git a/pyproject.toml b/pyproject.toml index bec7eb9..1f05900 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,7 +87,7 @@ path = "src/django_twc_toolbox/__init__.py" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.1.0" +current_version = "0.1.1" push = false # set to false for CI tag = false version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" diff --git a/src/django_twc_toolbox/__init__.py b/src/django_twc_toolbox/__init__.py index f11ec6a..4e2c34c 100644 --- a/src/django_twc_toolbox/__init__.py +++ b/src/django_twc_toolbox/__init__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/tests/test_version.py b/tests/test_version.py index 61f2be8..e2e3154 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.1.0" + assert __version__ == "0.1.1"