Skip to content

Commit 69013ef

Browse files
author
Testing Git
committed
Version updated from 0.24.2 to 0.24.3
1 parent 609b92c commit 69013ef

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

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

3+
## 0.24.3 (2024-07-17)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.24.2...0.24.3)
5+
6+
### Fixes
7+
8+
- Fix KeyError in TOML file handling. [f3c328a](https://github.com/callowayproject/bump-my-version/commit/f3c328a6b11c5be2e285453714d4e7a3148b1078)
9+
10+
The code has been updated to handle KeyErrors when updating TOML files. If a KeyError is raised, it's now caught and managed depending on the file_change attributes 'ignore_missing_file' or 'ignore_missing_version'. This aims to provide more robust handling of edge cases in TOML files. In addition, a new test case has been added to ensure current version is not required in the configuration.
11+
12+
Fixes #212
13+
### Other
14+
15+
- [pre-commit.ci] pre-commit autoupdate. [536c7b1](https://github.com/callowayproject/bump-my-version/commit/536c7b122aa57576fa770b59ca093fc4444bd402)
16+
17+
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.4.10 → v0.5.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.10...v0.5.2)
18+
19+
320
## 0.24.2 (2024-07-03)
421
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.24.1...0.24.2)
522

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__: str = "0.24.2"
3+
__version__: str = "0.24.3"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ order-by-type = true
216216
convention = "google"
217217

218218
[tool.bumpversion]
219-
current_version = "0.24.2"
219+
current_version = "0.24.3"
220220
commit = true
221221
commit_args = "--no-verify"
222222
tag = true

0 commit comments

Comments
 (0)