From f2c343b83b537b0ad42d186a9bc0362a517170d1 Mon Sep 17 00:00:00 2001 From: Testing Git Date: Sat, 16 Dec 2023 13:17:37 +0000 Subject: [PATCH] Version updated from 0.14.0 to 0.15.0 --- CHANGELOG.md | 15 +++++++++++++++ bumpversion/__init__.py | 2 +- docsrc/reference/bumpversion/bumpversion.md | 2 +- pyproject.toml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acf51d4d..fde85063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## Unreleased (2023-12-16) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.14.0...0.15.0) + +### Fixes + +- Fixed requirements for github action. [d96e07a](https://github.com/callowayproject/bump-my-version/commit/d96e07a79aef643a363449b86847008152599f64) + +### Updates + +- Changed default regex CLI value to None. [93191f3](https://github.com/callowayproject/bump-my-version/commit/93191f3c20e0f91224f1c2e1df70c3d477cc67ec) + + Fixes #64 + + The default value of False was overriding other values. + ## 0.14.0 (2023-12-15) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.13.0...0.14.0) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index caf9fddb..b90a12be 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.14.0" +__version__: str = "0.15.0" diff --git a/docsrc/reference/bumpversion/bumpversion.md b/docsrc/reference/bumpversion/bumpversion.md index 68a32d1e..ac20d224 100644 --- a/docsrc/reference/bumpversion/bumpversion.md +++ b/docsrc/reference/bumpversion/bumpversion.md @@ -51,7 +51,7 @@ bumpversion.__main__ :canonical: bumpversion.__version__ :type: str :value: > - '0.14.0' + '0.15.0' ```{autodoc2-docstring} bumpversion.__version__ ``` diff --git a/pyproject.toml b/pyproject.toml index c9b3b864..72ed4693 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -208,7 +208,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.14.0" +current_version = "0.15.0" commit = true commit_args = "--no-verify" tag = true