From 0bba8c77cf0f3c5e89634855130c0456fc1a0779 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Mon, 13 May 2024 18:52:00 -0500 Subject: [PATCH] :bookmark: bump version 0.1.0 -> 0.1.1 (#15) --- .copier/package.yml | 2 +- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- src/django_opfield/__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 4373890..72523f8 100644 --- a/.copier/package.yml +++ b/.copier/package.yml @@ -3,7 +3,7 @@ _commit: v2024.19 _src_path: gh:westerveltco/django-twc-package author_email: josh@joshthomas.dev author_name: Josh Thomas -current_version: 0.1.0 +current_version: 0.1.1 django_versions: - '4.2' - '5.0' diff --git a/CHANGELOG.md b/CHANGELOG.md index a19801a..590bc0a 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.1.1] + ### Changed - Changed exception raised if `op` CLI not found to `RuntimeError`. @@ -54,5 +56,6 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-opfield/compare/v0.1.0...HEAD +[unreleased]: https://github.com/westerveltco/django-opfield/compare/v0.1.1...HEAD [0.1.0]: https://github.com/westerveltco/django-opfield/releases/tag/v0.1.0 +[0.1.1]: https://github.com/westerveltco/django-opfield/releases/tag/v0.1.1 diff --git a/pyproject.toml b/pyproject.toml index 9b09f4b..1333465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ Source = "https://github.com/westerveltco/django-opfield" [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_opfield/__init__.py b/src/django_opfield/__init__.py index f11ec6a..4e2c34c 100644 --- a/src/django_opfield/__init__.py +++ b/src/django_opfield/__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 a13f3c5..b3effd6 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"