diff --git a/CHANGELOG.md b/CHANGELOG.md index cdcfa73f..32b950c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.16.0 (2024-01-05) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.15.4...0.16.0) + +### New + +- Add support for legacy multiline search options (refs #98). [278eae5](https://github.com/callowayproject/bump-my-version/commit/278eae578f283223742b7c55870ad58acc8dc1d9) + +### Other + +- [pre-commit.ci] pre-commit autoupdate. [2e9a400](https://github.com/callowayproject/bump-my-version/commit/2e9a4005f9b3f7d7ccbe443188e12d6217039342) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.1.7 → v0.1.9](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.7...v0.1.9) + + ## 0.15.4 (2023-12-29) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.15.3...0.15.4) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 0c22a304..4ba2d8f3 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.15.4" +__version__: str = "0.16.0" diff --git a/docsrc/reference/bumpversion/bumpversion.md b/docsrc/reference/bumpversion/bumpversion.md index a7e54d45..8944ad28 100644 --- a/docsrc/reference/bumpversion/bumpversion.md +++ b/docsrc/reference/bumpversion/bumpversion.md @@ -51,7 +51,7 @@ bumpversion.__main__ :canonical: bumpversion.__version__ :type: str :value: > - '0.15.4' + '0.16.0' ```{autodoc2-docstring} bumpversion.__version__ ``` diff --git a/pyproject.toml b/pyproject.toml index e72ad34d..e24dc390 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -208,7 +208,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.15.4" +current_version = "0.16.0" commit = true commit_args = "--no-verify" tag = true @@ -245,6 +245,7 @@ replace = "{current_version}...{new_version}" + [tool.pydoclint] style = "google" exclude = '\.git|tests'