Skip to content

Commit

Permalink
Version updated from 0.16.1 to 0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Testing Git committed Jan 13, 2024
1 parent 4b5638d commit 2aa2b36
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.16.2 (2024-01-13)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.16.1...0.16.2)

### Fixes

- Fixed a bad import. [46c9c48](https://github.com/callowayproject/bump-my-version/commit/46c9c48ccc02a9b2d0e81d70c15323de3e8a4ce8)

- Fixed extra whitespace added when updating pyproject.toml. [839f17f](https://github.com/callowayproject/bump-my-version/commit/839f17fbf7a0902fb15347a31778c55e9a91e7ab)

- Removed dotted-notation from requirements. There is an issue on how dotted-notation sets values in the TOMLkit data structure.

- Added `get_nested_value` and `set_nested_value` as replacements for dotted-notation.
### Other

- [pre-commit.ci] pre-commit autoupdate. [ee4d2f3](https://github.com/callowayproject/bump-my-version/commit/ee4d2f32af28c650651b9242c09e3b125e0101e2)

**updates:** - [github.com/astral-sh/ruff-pre-commit: v0.1.9 → v0.1.11](https://github.com/astral-sh/ruff-pre-commit/compare/v0.1.9...v0.1.11)


## 0.16.1 (2024-01-06)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.16.0...0.16.1)

Expand Down
2 changes: 1 addition & 1 deletion bumpversion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Top-level package for bump-my-version."""

__version__: str = "0.16.1"
__version__: str = "0.16.2"
2 changes: 1 addition & 1 deletion docsrc/reference/bumpversion/bumpversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bumpversion.__main__
:canonical: bumpversion.__version__
:type: str
:value: >
'0.16.1'
'0.16.2'
```{autodoc2-docstring} bumpversion.__version__
```
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ order-by-type = true
convention = "google"

[tool.bumpversion]
current_version = "0.16.1"
current_version = "0.16.2"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down Expand Up @@ -238,6 +238,7 @@ filename = "CHANGELOG.md"
search = "{current_version}...HEAD"
replace = "{current_version}...{new_version}"


[tool.pydoclint]
style = "google"
exclude = '\.git|tests'
Expand Down

0 comments on commit 2aa2b36

Please sign in to comment.