Skip to content

Commit 621b2ed

Browse files
author
Testing Git
committed
Version updated from 0.28.3 to 0.29.0
1 parent 878197f commit 621b2ed

File tree

6 files changed

+125
-111
lines changed

6 files changed

+125
-111
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.29.0 (2024-12-19)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.28.3...0.29.0)
5+
6+
### New
7+
8+
- Add support for specifying current version in `do_show`. [878197f](https://github.com/callowayproject/bump-my-version/commit/878197f186defabf036ddeb940eb91dfed172d0b)
9+
10+
This update introduces a `--current-version` option to the `show` command and passes it into the `do_show` function. If provided, the `current_version` is added to the configuration, allowing more control over version display or manipulation.
11+
### Updates
12+
13+
- Update README to clarify pre_n handling with distance_to_latest_tag. [c027879](https://github.com/callowayproject/bump-my-version/commit/c0278791fad3de1c3d66ab06b49118b2b8314933)
14+
15+
Revised the `parse` expression to exclude `pre_n` and updated `serialize` examples to use `distance_to_latest_tag` instead. Fixes #272
16+
317
## 0.28.3 (2024-12-17)
418
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.28.2...0.28.3)
519

Dockerfile

+2-2
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=2024-12-17T17:58:20Z
25+
LABEL org.opencontainers.image.created=2024-12-19T19:45:37Z
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.28.3
29+
LABEL org.opencontainers.image.version=0.29.0
3030
LABEL org.opencontainers.image.licenses=MIT
3131

3232
# Add a non-root user and group

action.yml

+1-1
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.28.3"
47+
run: pip install "bump-my-version==0.29.0"
4848
- name: Pass Inputs to Shell
4949
id: bump
5050
shell: bash

bumpversion/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Top-level package for bump-my-version."""
22

3-
__version__ = "0.28.3"
3+
__version__ = "0.29.0"

pyproject.toml

+1-1
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.28.3"
257+
current_version = "0.29.0"
258258
commit = true
259259
commit_args = "--no-verify"
260260
tag = true

0 commit comments

Comments
 (0)