From 85441b618d5b790e36b099d183ee5754f656027e Mon Sep 17 00:00:00 2001 From: Testing Git Date: Wed, 3 Jul 2024 18:47:32 +0000 Subject: [PATCH] Version updated from 0.24.1 to 0.24.2 --- CHANGELOG.md | 13 +++++++++++++ bumpversion/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a43e5f69..c10cf2cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.24.2 (2024-07-03) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.24.1...0.24.2) + +### Fixes + +- Fixed tag version extraction. [67eea3d](https://github.com/callowayproject/bump-my-version/commit/67eea3ddd1dbf0f64d610bc46cf22e638925c26f) + + The output of `git describe` uses `-` as a delimiter. Parsing tags caused splits in the parsing of version numbers. + + This joins all the remaining parts of the `git describe` with a `-`. +- Fixed pydoclint configuration. [0386073](https://github.com/callowayproject/bump-my-version/commit/0386073d7c298a2bd159fc2c59d08689557e9224) + + ## 0.24.1 (2024-06-26) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.24.0...0.24.1) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 562e653d..302ae1fb 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.24.1" +__version__: str = "0.24.2" diff --git a/pyproject.toml b/pyproject.toml index c11136bf..16ac2f56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -216,7 +216,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.24.1" +current_version = "0.24.2" commit = true commit_args = "--no-verify" tag = true