diff --git a/CHANGELOG.md b/CHANGELOG.md index 45e3b676..28ad17e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 0.21.1 (2024-05-16) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.21.0...0.21.1) + +### Other + +- [pre-commit.ci] auto fixes from pre-commit.com hooks. [1b57c2b](https://github.com/callowayproject/bump-my-version/commit/1b57c2b3e5b687e541d611b88b3d5fae4ce8826b) + + for more information, see https://pre-commit.ci +- [pre-commit.ci] pre-commit autoupdate. [e813eda](https://github.com/callowayproject/bump-my-version/commit/e813edad628803cd4c9f59ff2b8303b4d779756a) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.3...v0.4.4) + +- [pre-commit.ci] pre-commit autoupdate. [05a0dd6](https://github.com/callowayproject/bump-my-version/commit/05a0dd65f31f3962e1ff4d2ee03ee99b2062ea5f) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.4.2 → v0.4.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.2...v0.4.3) + +### Updates + +- Update README.md. [cad7096](https://github.com/callowayproject/bump-my-version/commit/cad7096c615f646a75c5d23bae745cd1a8e0adb5) + + ## 0.21.0 (2024-05-01) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.20.3...0.21.0) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 238e329d..69b64a79 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.21.0" +__version__: str = "0.21.1" diff --git a/bumpversion/show.py b/bumpversion/show.py index fca1a234..14ac828a 100644 --- a/bumpversion/show.py +++ b/bumpversion/show.py @@ -102,7 +102,7 @@ def resolve_name(obj: Any, name: str, default: Any = None, err_on_missing: bool ): # un-subscript-able object return default return current - except Exception as e: # noqa: BLE001 # pragma: no cover + except Exception as e: # pragma: no cover if err_on_missing: raise BadInputError(f"Could not resolve '{name}'") from e else: diff --git a/pyproject.toml b/pyproject.toml index 9b9ce96a..cddf1085 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -216,7 +216,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.21.0" +current_version = "0.21.1" commit = true commit_args = "--no-verify" tag = true