Skip to content

Commit

Permalink
Version updated from 0.30.1 to 0.30.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Testing Git committed Feb 1, 2025
1 parent e8946b3 commit b3a3649
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 17 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

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

### Fixes

- Fix #388 - `python3.8` type hint compatibility. [5744f86](https://github.com/callowayproject/bump-my-version/commit/5744f86e8d5ff21e39d6e307b6bb26c70591c5e0)

This should address the following error when running `bump-my-version`
in a `python3.8` environment:

```
def is_subpath(parent: Path | str, path: Path | str) -> bool:
**typeerror:** unsupported operand type(s) for |: 'type' and 'type'
### Other
- [pre-commit.ci] pre-commit autoupdate. [ea3267a](https://github.com/callowayproject/bump-my-version/commit/ea3267a9114182f1ea9299ac468fc65a379005f1)
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.9.2 → v0.9.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.9.2...v0.9.3)
## 0.30.1 (2025-01-30)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.30.0...0.30.1)
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-30T12:25:55Z
LABEL org.opencontainers.image.created=2025-02-01T13:29:36Z
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.1
LABEL org.opencontainers.image.version=0.30.2
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.1"
run: pip install "bump-my-version==0.30.2"
- 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.1"
__version__ = "0.30.2"
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.1"
current_version = "0.30.2"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down
24 changes: 12 additions & 12 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b3a3649

Please sign in to comment.