Skip to content

Commit 0cf1cb5

Browse files
author
Testing Git
committed
Version updated from 0.7.1 to 0.8.0
1 parent d3fdfc8 commit 0cf1cb5

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

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

3+
## 0.8.0 (2023-07-13)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.7.1...0.8.0)
5+
6+
### New
7+
8+
- Added documentation for ignore missing version. [e0731c3](https://github.com/callowayproject/bump-my-version/commit/e0731c37b8cc1c5ac558462158c86bcb9467a166)
9+
10+
- Added `--ignore-missing-version` flag to `bump` and `replace`. [a5bd008](https://github.com/callowayproject/bump-my-version/commit/a5bd008cd60cde13f13505e7d21ba48b4820174a)
11+
12+
- Added `ignore-missing-version` configuration. [45c85be](https://github.com/callowayproject/bump-my-version/commit/45c85be6cd1eea10baa37e4529c3fd9ca7afc78d)
13+
14+
- Defaults to `False`
15+
- File configurations can also override this value
16+
- Added deprecation warnings. [733438b](https://github.com/callowayproject/bump-my-version/commit/733438beb8ad8e320968ef0b2ba2031dc05bd0a5)
17+
18+
- `--list` option will go bye-bye in 1.0
19+
- calling `bumpversion` without a subcomand will leave in 1.0
20+
321
## 0.7.1 (2023-07-12)
422
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.7.0...0.7.1)
523

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

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.7.1'
54+
'0.8.0'
5555
5656
```{autodoc2-docstring} bumpversion.__version__
5757
```

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ order-by-type = true
210210
convention = "google"
211211

212212
[tool.bumpversion]
213-
current_version = "0.7.1"
213+
current_version = "0.8.0"
214214
commit = true
215215
commit_args = "--no-verify"
216216
tag = true

0 commit comments

Comments
 (0)