Skip to content

Commit d8ecca8

Browse files
author
Testing Git
committed
Version updated from 0.30.2 to 0.31.0
1 parent c2b11b4 commit d8ecca8

File tree

6 files changed

+120
-20
lines changed

6 files changed

+120
-20
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.31.0 (2025-02-01)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.30.2...0.31.0)
5+
6+
### New
7+
8+
- Add support for serializing SCMInfo in YAML, JSON, and output. [e8611b2](https://github.com/callowayproject/bump-my-version/commit/e8611b2f6a208b0949d0d148ad0395b3de92b68f)
9+
10+
Ensure SCMInfo objects can be serialized into YAML and JSON formats, improving compatibility with configuration and output displays. Updated dumper functions and tests to reflect the new changes and include SCMInfo details in the configurations.
11+
### Updates
12+
13+
- Update dependencies and adjust package versions. [b6ed073](https://github.com/callowayproject/bump-my-version/commit/b6ed07302799aab29aea142d9927e766a102e109)
14+
15+
316
## 0.30.2 (2025-02-01)
417
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.30.1...0.30.2)
518

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ ARG USER_UID=1000
2222
ARG USER_GID=$USER_UID
2323

2424
LABEL org.opencontainers.image.authors="Calloway Project https://github.com/callowayproject"
25-
LABEL org.opencontainers.image.created=2025-02-01T13:29:36Z
25+
LABEL org.opencontainers.image.created=2025-02-01T16:32:24Z
2626
LABEL org.opencontainers.image.url=https://github.com/callowayproject/bump-my-version
2727
LABEL org.opencontainers.image.documentation=https://callowayproject.github.io/bump-my-version
2828
LABEL org.opencontainers.image.source=https://github.com/callowayproject/bump-my-version
29-
LABEL org.opencontainers.image.version=0.30.2
29+
LABEL org.opencontainers.image.version=0.31.0
3030
LABEL org.opencontainers.image.licenses=MIT
3131

3232
# Add a non-root user and group

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
python-version: '3.12'
4545
- name: Install bump-my-version
4646
shell: bash
47-
run: pip install "bump-my-version==0.30.2"
47+
run: pip install "bump-my-version==0.31.0"
4848
- name: Pass Inputs to Shell
4949
id: bump
5050
shell: bash

bumpversion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Top-level package for bump-my-version."""
22

3-
__version__ = "0.30.2"
3+
__version__ = "0.31.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ suppress-dummy-args = true
254254
suppress-none-returning = true
255255

256256
[tool.bumpversion]
257-
current_version = "0.30.2"
257+
current_version = "0.31.0"
258258
commit = true
259259
commit_args = "--no-verify"
260260
tag = true

0 commit comments

Comments
 (0)