Skip to content

Commit

Permalink
Version updated from 0.30.0 to 0.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Testing Git committed Jan 30, 2025
1 parent cfd0b69 commit c5d582a
Show file tree
Hide file tree
Showing 6 changed files with 106 additions and 890 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.30.1 (2025-01-30)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.30.0...0.30.1)

### Fixes

- Fixing issues with 3.9 compatibility. [cd2b193](https://github.com/callowayproject/bump-my-version/commit/cd2b193412b87ef47c3b9129b527eaa826429270)

- Fixes #284. Add UTF-8 encoding to subprocess.run in run_command. [6c856b6](https://github.com/callowayproject/bump-my-version/commit/6c856b6db40300de2ba0583bbd092b25d01b0004)

Explicitly set the encoding to "utf-8" in the subprocess.run call to ensure consistent handling of command output. This prevents potential encoding-related issues when processing command results.

## 0.30.0 (2025-01-26)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.29.0...0.30.0)

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=2025-01-26T15:45:13Z
LABEL org.opencontainers.image.created=2025-01-30T12:25:55Z
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.30.0
LABEL org.opencontainers.image.version=0.30.1
LABEL org.opencontainers.image.licenses=MIT

# Add a non-root user and group
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
python-version: '3.12'
- name: Install bump-my-version
shell: bash
run: pip install "bump-my-version==0.30.0"
run: pip install "bump-my-version==0.30.1"
- name: Pass Inputs to Shell
id: bump
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion bumpversion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Top-level package for bump-my-version."""

__version__ = "0.30.0"
__version__ = "0.30.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ suppress-dummy-args = true
suppress-none-returning = true

[tool.bumpversion]
current_version = "0.30.0"
current_version = "0.30.1"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down
Loading

0 comments on commit c5d582a

Please # to comment.