Skip to content

Commit a2c562f

Browse files
author
Testing Git
committed
Version updated from 1.0.1 to 1.0.2
1 parent c748828 commit a2c562f

File tree

6 files changed

+48
-23
lines changed

6 files changed

+48
-23
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## 1.0.2 (2025-03-08)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/1.0.1...1.0.2)
5+
6+
### Fixes
7+
8+
- Fix incorrect evaluation. [3578c87](https://github.com/callowayproject/bump-my-version/commit/3578c872ef8143f11c22cb5e83765c6e69cf3eef)
9+
10+
The check for valid files to add should be `filename`, not `self.files`
11+
- Refactor and improve test structure for file modifications. [8b52174](https://github.com/callowayproject/bump-my-version/commit/8b52174651e3c02daf3ba00166cd8f054498313d)
12+
13+
Consolidated and restructured tests for `modify_files` into classes for better organization and clarity. Fixed an issue where empty file configurations were not properly ignored and enhanced filtering logic in configuration handling.
14+
15+
Fixes #312
16+
### Other
17+
18+
- Replace `list[str]` with `List[str]` for Python 3.8+ compatibility. [6fb977c](https://github.com/callowayproject/bump-my-version/commit/6fb977ca9144a590153e779c59c4c788efd1442f)
19+
20+
Updated all instances of `list[str]` with the generic `List[str]` from the `typing` module to maintain compatibility with older Python versions (3.8 and earlier). This ensures consistent type annotations across the codebase.
21+
22+
Fixes #313
23+
- [pre-commit.ci] pre-commit autoupdate. [a057743](https://github.com/callowayproject/bump-my-version/commit/a0577433bd069f47d0e1eb368def4309f931a947)
24+
25+
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.9.7 → v0.9.9](https://github.com/astral-sh/ruff-pre-commit/compare/v0.9.7...v0.9.9)
26+
27+
328
## 1.0.1 (2025-03-04)
429
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/1.0.0...1.0.1)
530

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=2025-03-05T00:43:59Z
25+
LABEL org.opencontainers.image.created=2025-03-08T14:39:21Z
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=1.0.1
29+
LABEL org.opencontainers.image.version=1.0.2
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==1.0.1"
47+
run: pip install "bump-my-version==1.0.2"
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__ = "1.0.1"
3+
__version__ = "1.0.2"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ suppress-dummy-args = true
257257
suppress-none-returning = true
258258

259259
[tool.bumpversion]
260-
current_version = "1.0.1"
260+
current_version = "1.0.2"
261261
commit = true
262262
commit_args = "--no-verify"
263263
tag = true

uv.lock

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)