Skip to content

Commit 1deef89

Browse files
author
Testing Git
committed
Version updated from 0.16.2 to 0.17.0
1 parent 0555ad2 commit 1deef89

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

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

3+
## 0.17.0 (2024-01-22)
4+
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.16.2...0.17.0)
5+
6+
### Fixes
7+
8+
- Fixed Py3.8 type annotation. [c15b23b](https://github.com/callowayproject/bump-my-version/commit/c15b23b1f8505dc9d756acf5b7fb73b7d7b5892a)
9+
10+
- Fixed some output in visualizing. [406f97a](https://github.com/callowayproject/bump-my-version/commit/406f97a8c77f9c0fce7f436dffe247542c7b75a5)
11+
12+
- Fixed bad type annotation. [8f4bedf](https://github.com/callowayproject/bump-my-version/commit/8f4bedf7fb104a2a683acbaa02621589d9a9de27)
13+
14+
- Fixed bad test imports. [a74342b](https://github.com/callowayproject/bump-my-version/commit/a74342bfbdc556a7c5161c2c9cee12736c31ee8f)
15+
16+
- Refactored the create subcommand. [f529d28](https://github.com/callowayproject/bump-my-version/commit/f529d283fb3a32eddee9daf368f9ce17ba5efcf1)
17+
18+
- Also organized the CLI tests
19+
### New
20+
21+
- Added `show-bump` subcommand. [0bbd814](https://github.com/callowayproject/bump-my-version/commit/0bbd81489ea0484962e9b3c207e6c6860cab6c55)
22+
23+
- Shows possible resulting versions of the `bump` command
24+
- Added sample-config feature. [3d0f67d](https://github.com/callowayproject/bump-my-version/commit/3d0f67dbf9f42ffad1583e1fe08bd0971262257c)
25+
26+
- Initial implementation
27+
### Updates
28+
29+
- Updated documentation. [4f90348](https://github.com/callowayproject/bump-my-version/commit/4f903486338af31557c3647fc0ae00d7cc8e4213)
30+
31+
332
## 0.16.2 (2024-01-13)
433
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.16.1...0.16.2)
534

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

docsrc/reference/bumpversion/bumpversion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ bumpversion.__main__
6060
:canonical: bumpversion.__version__
6161
:type: str
6262
:value: >
63-
'0.16.2'
63+
'0.17.0'
6464
6565
```{autodoc2-docstring} bumpversion.__version__
6666
```

pyproject.toml

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

210210
[tool.bumpversion]
211-
current_version = "0.16.2"
211+
current_version = "0.17.0"
212212
commit = true
213213
commit_args = "--no-verify"
214214
tag = true

0 commit comments

Comments
 (0)