diff --git a/CHANGELOG.md b/CHANGELOG.md index 632661ab..5126c1f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -## Unreleased (2024-03-12) -[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.18.3...HEAD) +## 0.19.0 (2024-03-12) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.18.3...0.19.0) +### Fixes + +- Fixing version hint generation. [ae1732b](https://github.com/callowayproject/bump-my-version/commit/ae1732b4a9b543992f83677263bb242c49c0f5c5) + ### Updates - Removes ability to call the CLI without subcommand. [e56c944](https://github.com/callowayproject/bump-my-version/commit/e56c944699151d589cec2b16a52f15cf56d151e6) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index fd9dd918..00069b3c 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.18.3" +__version__: str = "0.19.0" diff --git a/pyproject.toml b/pyproject.toml index 816c50ad..d95f95a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -213,7 +213,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.18.3" +current_version = "0.19.0" commit = true commit_args = "--no-verify" tag = true