Skip to content

Commit

Permalink
Merge branch 'master' into improve-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Jun 11, 2024
2 parents 91409d8 + be7028a commit 5a7f92c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion bumpversion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Top-level package for bump-my-version."""

__version__: str = "0.21.0"
__version__: str = "0.21.1"
2 changes: 1 addition & 1 deletion bumpversion/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a7f92c

Please sign in to comment.