diff --git a/CHANGELOG.md b/CHANGELOG.md index 995fcbf5..f1fd16df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 0.17.3 (2024-01-29) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.17.2...0.17.3) + +### Fixes + +- Refactored VersionComponentConfig to VersionComponentSpec. [b538308](https://github.com/callowayproject/bump-my-version/commit/b53830826c81446576b3979080b05930d71c34e2) + + More consistent with VersionSpec +### New + +- Added mental model documentation. [5cbd250](https://github.com/callowayproject/bump-my-version/commit/5cbd250ab412f0f56af14a0fcc450cb31643e3e4) + +### Other + +- [pre-commit.ci] pre-commit autoupdate. [a2a3fe6](https://github.com/callowayproject/bump-my-version/commit/a2a3fe65fceaae2eb1aa2ab0137e00bb3565709b) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.1.11 → v0.1.14](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.11...v0.1.14) + +### Updates + +- Updated more documentation. [779c84c](https://github.com/callowayproject/bump-my-version/commit/779c84c22bde4f96bc44e13ab1834ab3cbb63ee9) + + ## 0.17.2 (2024-01-27) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.17.1...0.17.2) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index d2b89524..af6abacf 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.17.2" +__version__: str = "0.17.3" diff --git a/docsrc/reference/bumpversion/bumpversion.md b/docsrc/reference/bumpversion/bumpversion.md index 7f9e3fe6..cf57023c 100644 --- a/docsrc/reference/bumpversion/bumpversion.md +++ b/docsrc/reference/bumpversion/bumpversion.md @@ -62,7 +62,7 @@ bumpversion.__main__ :canonical: bumpversion.__version__ :type: str :value: > - '0.17.2' + '0.17.3' ```{autodoc2-docstring} bumpversion.__version__ :parser: myst diff --git a/pyproject.toml b/pyproject.toml index d2bf2e1b..cf8aeaf2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -208,7 +208,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.17.2" +current_version = "0.17.3" commit = true commit_args = "--no-verify" tag = true