diff --git a/CHANGELOG.md b/CHANGELOG.md index f1fd16df..196e2db5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 0.17.4 (2024-02-10) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.17.3...0.17.4) + +### Fixes + +- Fixed linting errors. [9515afc](https://github.com/callowayproject/bump-my-version/commit/9515afcde882e3e5a9cdb51cd91d43ef5d711485) + +- Fix encoding when reading text. [c03476a](https://github.com/callowayproject/bump-my-version/commit/c03476ac51b94cd136c39bb9c48fee4f1a815b42) + + Fixes #68 +### Other + +- [pre-commit.ci] pre-commit autoupdate. [491b4aa](https://github.com/callowayproject/bump-my-version/commit/491b4aa4edc0241edbf5d77cfcf609c6de56f301) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.1.14 → v0.2.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.14...v0.2.0) + + ## 0.17.3 (2024-01-29) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.17.2...0.17.3) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index af6abacf..fa41ce2a 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.17.3" +__version__: str = "0.17.4" diff --git a/docsrc/reference/bumpversion/bumpversion.md b/docsrc/reference/bumpversion/bumpversion.md index cf57023c..348a25b4 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.3' + '0.17.4' ```{autodoc2-docstring} bumpversion.__version__ :parser: myst diff --git a/pyproject.toml b/pyproject.toml index a1c32b78..1aa304ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -207,7 +207,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.17.3" +current_version = "0.17.4" commit = true commit_args = "--no-verify" tag = true