Skip to content

Commit

Permalink
Version updated from 0.8.0 to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Testing Git committed Aug 3, 2023
1 parent f6b3872 commit 9a79031
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.9.0 (2023-08-03)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.8.0...0.9.0)

### New

- Added documentation about regular expressions. [449b70a](https://github.com/callowayproject/bump-my-version/commit/449b70aca09c44be2d834b531c85b6a8ff5dde03)

- Added configuration and command-line `no_regex` option. [a295a32](https://github.com/callowayproject/bump-my-version/commit/a295a328caedabfe8a1c270a34a6f3ddc41dff7b)

- Global and individual file configurations available for `no_regex`
- Command-line flag `--no-regex` flag added for `bump` and `replace` sub-commands
- Adds regular expression searching ability. [0210d74](https://github.com/callowayproject/bump-my-version/commit/0210d74a2a66deb58b59b601d61a1b0409c2b6eb)

- Search strings are treated as regular expressions after the initial substitution
- Added deprecation warning on .cfg files. [a0481b7](https://github.com/callowayproject/bump-my-version/commit/a0481b7fb9d9b210fc8162abcb5d5a8ba2710134)


## 0.8.0 (2023-07-13)
[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.7.1...0.8.0)

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.8.0"
__version__: str = "0.9.0"
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.8.0'
'0.9.0'
```{autodoc2-docstring} bumpversion.__version__
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ order-by-type = true
convention = "google"

[tool.bumpversion]
current_version = "0.8.0"
current_version = "0.9.0"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down

0 comments on commit 9a79031

Please sign in to comment.