diff --git a/CHANGELOG.md b/CHANGELOG.md index 491a7feb..2aa7f095 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,22 @@ # Changelog -## Unreleased (2023-06-21) -[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.5.1...HEAD) +## 0.6.0 (2023-06-23) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.5.1.dev69...0.6.0) ### Fixes +- Fixed `--help` and `bump` invocations. [9d965e5](https://github.com/callowayproject/bump-my-version/commit/9d965e57f2c0a41476d75ec053653416eae966c9) + + - `--help` works for individual sub-commands, but not for the command + - `bump` now works and fixed tests - Fixed issue regarding TOML types. [8960d24](https://github.com/callowayproject/bump-my-version/commit/8960d249183cf78d8b35967b86fef8701fc9c37e) - `tomlkit.parse()` returns a `TOMLDocument`. - `unwrap()` converts it into a `dict` ### New +- Adds `branch_name` to SCM information. [173be1a](https://github.com/callowayproject/bump-my-version/commit/173be1a7a107639be912d0fb76149accb54b0332) + - Added documentation for the show command. [d537274](https://github.com/callowayproject/bump-my-version/commit/d5372742a8cf76777f1bf4450bf31e9310d04681) - Adds `--increment` option to `show` subcommand. [b01fffc](https://github.com/callowayproject/bump-my-version/commit/b01fffcad8479db25375d53fdeebc879d7317b11) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 7613b496..b82c36c2 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.5.1.dev6" +__version__: str = "0.6.0" diff --git a/pyproject.toml b/pyproject.toml index 2fc1bfb0..065696dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -210,7 +210,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.5.1.dev6" +current_version = "0.6.0" commit = true commit_args = "--no-verify" tag = true