From c9e7f143c9839ea603e1ebdc54a091be9cc50618 Mon Sep 17 00:00:00 2001 From: Testing Git Date: Sun, 6 Oct 2024 13:24:03 +0000 Subject: [PATCH] Version updated from 0.26.1 to 0.27.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ action.yml | 2 +- bumpversion/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f91a79e0..a0f15a07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 0.27.0 (2024-10-06) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.26.1...0.27.0) + +### Fixes + +- Fixed test to look for warning logs. [538c420](https://github.com/callowayproject/bump-my-version/commit/538c4205c1d711daf732027719f5fa67e0418d5e) + +- Refactor and enhance error handling. [c84bfa7](https://github.com/callowayproject/bump-my-version/commit/c84bfa7dcb5914c4adbfa9213d377fd705949501) + + Updated subprocess calls to disable check, refined lint configurations, fixed type annotations and exceptions, and improved dictionary path validation. +### New + +- Add HookError for failed hook execution with tests. [39fc233](https://github.com/callowayproject/bump-my-version/commit/39fc233163222070d5a7c4549e59ea2b292c6ba5) + + Raise HookError when a hook script exits with a non-zero status. Modified logger to display warnings instead of debug messages in such scenarios. Added tests to ensure exceptions are raised for failed hooks. +### Other + +- [pre-commit.ci] pre-commit autoupdate. [130478d](https://github.com/callowayproject/bump-my-version/commit/130478d664e7ed9abe88a9882b00e7d5e4a5c37a) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.6.5 → v0.6.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.6.5...v0.6.7) + +- Create FUNDING.yml. [2bda200](https://github.com/callowayproject/bump-my-version/commit/2bda20037cf10d714fb906fa05b73103c56bb6c3) + + ## 0.26.1 (2024-09-14) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.26.0...0.26.1) diff --git a/action.yml b/action.yml index c2cd3b8f..1af2dbf7 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,7 @@ runs: python-version: '3.12' - name: Install bump-my-version shell: bash - run: pip install "bump-my-version==0.26.1" + run: pip install "bump-my-version==0.27.0" - name: Pass Inputs to Shell id: bump shell: bash diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index c8edce2c..1e32f8df 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.26.1" +__version__: str = "0.27.0" diff --git a/pyproject.toml b/pyproject.toml index 6b00c49a..75938ec8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -255,7 +255,7 @@ suppress-dummy-args = true suppress-none-returning = true [tool.bumpversion] -current_version = "0.26.1" +current_version = "0.27.0" commit = true commit_args = "--no-verify" tag = true