diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cfb8e2d..6cbfebcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 0.20.0 (2024-03-27) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.19.3...0.20.0) + +### Fixes + +- Refactored context into its own module. [5a3e05d](https://github.com/callowayproject/bump-my-version/commit/5a3e05d82e7560455ec8332230020c9055aab122) + +### New + +- Added `always_increment` attribute for parts. [53ee848](https://github.com/callowayproject/bump-my-version/commit/53ee848988d3dae0665e47aa29d8fa02e604b87f) + + This is a requirement for CalVer to ensure they always increment with each bump, but it will work for any type. +- Added CalVer function and formatting. [7a0e639](https://github.com/callowayproject/bump-my-version/commit/7a0e639da8d372e1960dc3dd1cd0620424a228d1) + + - Version parts now have a `calver_format` attribute for CalVer parts. +### Updates + +- Updated the documentation. [607609d](https://github.com/callowayproject/bump-my-version/commit/607609d1600fb795443998656229ed4a177f9d96) + + ## 0.19.3 (2024-03-23) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.19.2...0.19.3) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 54da763e..3965a245 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.19.3" +__version__: str = "0.20.0" diff --git a/pyproject.toml b/pyproject.toml index dfe1080c..cf57dfa0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -215,7 +215,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.19.3" +current_version = "0.20.0" commit = true commit_args = "--no-verify" tag = true