From 61a4b413ef8966d00432c8ef19963dac26e69b5d Mon Sep 17 00:00:00 2001 From: Testing Git Date: Sat, 14 Dec 2024 23:29:48 +0000 Subject: [PATCH] Version updated from 0.28.1 to 0.28.2 --- CHANGELOG.md | 64 +++++++++++++++++++++++++++++++++++++++++ Dockerfile | 4 +-- action.yml | 2 +- bumpversion/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 69 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ae03a4..613da9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,69 @@ # Changelog +## 0.28.2 (2024-12-14) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.28.1...0.28.2) + +### Fixes + +- Fixed Ruff errors and workflow permissions. [11c1e42](https://github.com/callowayproject/bump-my-version/commit/11c1e42954281dac9febcac80f10d3775fcfcbbc) + +- Fixed more uv run workflows. [d829276](https://github.com/callowayproject/bump-my-version/commit/d829276347c5391a9d2233e56e30300b69172d14) + +- Fixed installation of test dependencies. [cbf10f2](https://github.com/callowayproject/bump-my-version/commit/cbf10f23c33e8d62d4851f11579f93a359553bff) + +- Fixed issue with python install. [6e2da8d](https://github.com/callowayproject/bump-my-version/commit/6e2da8d54ad79ed3b46976af57d3721b3e50b370) + +- Fixed GitHub workflows. [86a0a3b](https://github.com/callowayproject/bump-my-version/commit/86a0a3bdbebbde81e17df687bc4d7303d27d490f) + +- Refactor warning display with Rich formatting. [2b7c905](https://github.com/callowayproject/bump-my-version/commit/2b7c905c792e1cbe22040a5ba890c4440990f99b) + + Replace plain click-based warnings with styled Rich panels for better visibility. This enhances user experience by providing clearer and more visually organized warnings. +- Refactored dependencies config. [39fed07](https://github.com/callowayproject/bump-my-version/commit/39fed070669258650cdf5d2a4c180399bf256ad6) + + - Changed `project.optional-dependencies` to `dependency-groups` +### New + +- Add branch selection for github-push-action. [4ecc07c](https://github.com/callowayproject/bump-my-version/commit/4ecc07cefa435964d0b1476cf95916c56885bdce) + +### Other + +- [pre-commit.ci] auto fixes from pre-commit.com hooks. [183a6f2](https://github.com/callowayproject/bump-my-version/commit/183a6f29a8781eb76029f677aa83678a2ed1d505) + + for more information, see https://pre-commit.ci +- [pre-commit.ci] pre-commit autoupdate. [075d0da](https://github.com/callowayproject/bump-my-version/commit/075d0da09b12c91be27ac3f28ba587c308e0c78e) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.7.4 → v0.8.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.4...v0.8.2) + +- [pre-commit.ci] pre-commit autoupdate. [6ed9f0e](https://github.com/callowayproject/bump-my-version/commit/6ed9f0e03e83407d8dca0cdf8d9ec920d8479564) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.7.1 → v0.7.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.1...v0.7.4) + +- Bump codecov/codecov-action from 4 to 5 in the github-actions group. [4194af8](https://github.com/callowayproject/bump-my-version/commit/4194af89ca515f894447180152c87ef1f3c9be2a) + + Bumps the github-actions group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action). + + + Updates `codecov/codecov-action` from 4 to 5 + - [Release notes](https://github.com/codecov/codecov-action/releases) + - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) + - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) + + --- + **updated-dependencies:** - dependency-name: codecov/codecov-action +dependency-type: direct:production +update-type: version-update:semver-major +dependency-group: github-actions + + **signed-off-by:** dependabot[bot] + +### Updates + +- Updated uv.lock. [09b825b](https://github.com/callowayproject/bump-my-version/commit/09b825b57f71ffdd08ddd50c655097812d5b8987) + +- Update setup section in contributing guide. [4bc279b](https://github.com/callowayproject/bump-my-version/commit/4bc279b7946b5eebf6ce9509ff02636bed6b83f9) + + Use extra dependencies specifier (referring to pyproject.toml) in the instructions, instead of requirements txt files (which were removed in previous commits). + ## 0.28.1 (2024-11-03) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.28.0...0.28.1) diff --git a/Dockerfile b/Dockerfile index 07a5285..5d4e0b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,11 +22,11 @@ ARG USER_UID=1000 ARG USER_GID=$USER_UID LABEL org.opencontainers.image.authors="Calloway Project https://github.com/callowayproject" -LABEL org.opencontainers.image.created=2024-11-03T13:23:08Z +LABEL org.opencontainers.image.created=2024-12-14T23:29:46Z LABEL org.opencontainers.image.url=https://github.com/callowayproject/bump-my-version LABEL org.opencontainers.image.documentation=https://callowayproject.github.io/bump-my-version LABEL org.opencontainers.image.source=https://github.com/callowayproject/bump-my-version -LABEL org.opencontainers.image.version=0.28.1 +LABEL org.opencontainers.image.version=0.28.2 LABEL org.opencontainers.image.licenses=MIT # Add a non-root user and group diff --git a/action.yml b/action.yml index b39e618..80102ca 100644 --- a/action.yml +++ b/action.yml @@ -44,7 +44,7 @@ runs: python-version: '3.12' - name: Install bump-my-version shell: bash - run: pip install "bump-my-version==0.28.1" + run: pip install "bump-my-version==0.28.2" - name: Pass Inputs to Shell id: bump shell: bash diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 898c408..7ef6267 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/pyproject.toml b/pyproject.toml index adba278..599b6d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -254,7 +254,7 @@ suppress-dummy-args = true suppress-none-returning = true [tool.bumpversion] -current_version = "0.28.1" +current_version = "0.28.2" commit = true commit_args = "--no-verify" tag = true