Skip to content

Commit 557b4d8

Browse files
author
Testing Git
committed
Version updated from 0.9.2 to 0.9.3
1 parent aeef1f9 commit 557b4d8

File tree

4 files changed

+43
-3
lines changed

4 files changed

+43
-3
lines changed

CHANGELOG.md

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

3+
## 0.9.3 (2023-08-25)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.9.2...0.9.3)
5+
6+
### Fixes
7+
8+
- Fixed file configuration overrides. [c1ef3b2](https://github.com/callowayproject/bump-my-version/commit/c1ef3b290746e10e24dcdcb56c52effb6b324464)
9+
10+
Fixes #55
11+
12+
The file config was ignoring falsey values when constructing the dict.
13+
14+
It now ignores `None` values.
15+
- Fixed documentation regarding regex config. [cd71a1a](https://github.com/callowayproject/bump-my-version/commit/cd71a1a4216286e49e0d1b8b9d867a26ee88eff8)
16+
17+
- TOML requires the double backslash while INI doesn't
18+
- Fixed requirements for docs. [7856ee0](https://github.com/callowayproject/bump-my-version/commit/7856ee01559289e943a26af7e36382855973e485)
19+
20+
### New
21+
22+
- Added documentation building workflow. [48980d7](https://github.com/callowayproject/bump-my-version/commit/48980d7d3445a323c7f8532a8edd61dc09d3fb51)
23+
24+
### Other
25+
26+
- [pre-commit.ci] pre-commit autoupdate. [7c38c40](https://github.com/callowayproject/bump-my-version/commit/7c38c401a3755329bce5f127a956e4603c7c4645)
27+
28+
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.0.284 → v0.0.285](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.284...v0.0.285)
29+
30+
- [pre-commit.ci] pre-commit autoupdate. [c30bd12](https://github.com/callowayproject/bump-my-version/commit/c30bd128ca27adea1a93876a29656c5cb7f6d178)
31+
32+
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.0.282 → v0.0.284](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.282...v0.0.284)
33+
34+
- [pre-commit.ci] pre-commit autoupdate. [95c89fb](https://github.com/callowayproject/bump-my-version/commit/95c89fb94ea6cfa5c9d28ed06ee6def9f98ab59f)
35+
36+
**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.0.281 → v0.0.282](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.281...v0.0.282)
37+
38+
### Updates
39+
40+
- Removed mentions of Python 3.7. [a91f690](https://github.com/callowayproject/bump-my-version/commit/a91f690ab2c36bef9243058f9e9bbdc1968e9af1)
41+
42+
343
## 0.9.2 (2023-08-07)
444
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.9.1...0.9.2)
545

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

docsrc/reference/bumpversion/bumpversion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ bumpversion.__main__
5151
:canonical: bumpversion.__version__
5252
:type: str
5353
:value: >
54-
'0.9.2'
54+
'0.9.3'
5555
5656
```{autodoc2-docstring} bumpversion.__version__
5757
```

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ order-by-type = true
207207
convention = "google"
208208

209209
[tool.bumpversion]
210-
current_version = "0.9.2"
210+
current_version = "0.9.3"
211211
commit = true
212212
commit_args = "--no-verify"
213213
tag = true

0 commit comments

Comments
 (0)