Skip to content

Commit ff2d12d

Browse files
author
Testing Git
committed
Version updated from 0.20.3 to 0.21.0
1 parent 7f4add0 commit ff2d12d

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

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

3+
## 0.21.0 (2024-05-01)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.20.3...0.21.0)
5+
6+
### Fixes
7+
8+
- Fixed a bug in the glob tests. [1041fe9](https://github.com/callowayproject/bump-my-version/commit/1041fe9b363fc79cb0bb95c301c1c9badb5da9cc)
9+
10+
Was not properly looking in the correct relative directories.
11+
- Fixed test for Windows glob paths. [ea45c4c](https://github.com/callowayproject/bump-my-version/commit/ea45c4c4d156c1b0807a019f4b04982fda195e8f)
12+
13+
- Fixed exclusion logic with wcmatch. [1c391be](https://github.com/callowayproject/bump-my-version/commit/1c391beca888797ce669a947373bca907c78dbfa)
14+
15+
- Refactored glob matching to use the wcmatch library. [bbf4ae0](https://github.com/callowayproject/bump-my-version/commit/bbf4ae0c9b4c77d78fb534f166c0165dffcb8c76)
16+
17+
### New
18+
19+
- Adds `glob_exclude` file specification parameter. [420e3bd](https://github.com/callowayproject/bump-my-version/commit/420e3bd42bf01c3c540ef72c67b55354fd8780e7)
20+
21+
User can prune the files resolved via the `glob` parameter.
22+
23+
Fixes #184
24+
### Other
25+
26+
- [pre-commit.ci] pre-commit autoupdate. [ce02aa7](https://github.com/callowayproject/bump-my-version/commit/ce02aa759e69ee823b6844626ed2db3dd858d54c)
27+
28+
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.4.1 → v0.4.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.1...v0.4.2)
29+
30+
331
## 0.20.3 (2024-04-26)
432
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.20.2...0.20.3)
533

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.20.3"
3+
__version__: str = "0.21.0"

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.20.3"
219+
current_version = "0.21.0"
220220
commit = true
221221
commit_args = "--no-verify"
222222
tag = true

0 commit comments

Comments
 (0)