diff --git a/CHANGELOG.md b/CHANGELOG.md index 810fad5c..8ebb0800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.10.0 (2023-09-05) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.9.3...0.10.0) + +### Updates + +- Refactored file resolution, inclusion, and exclusion. [646af54](https://github.com/callowayproject/bump-my-version/commit/646af5438740e5dd17425144c6f2e4f305ffc30b) + + - Fixes #61 + - Config now includes `resolved_filemap` property + - resolved filemap exapands all globs + - Config now includes `files_to_modify` property + - files to modify resolves inclusions and exclutions + - Improved Config.add_files property + ## 0.9.3 (2023-08-25) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.9.2...0.9.3) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index d90d7373..e5ba7407 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.9.3" +__version__: str = "0.10.0" diff --git a/docsrc/reference/bumpversion/bumpversion.md b/docsrc/reference/bumpversion/bumpversion.md index edf724b3..61308219 100644 --- a/docsrc/reference/bumpversion/bumpversion.md +++ b/docsrc/reference/bumpversion/bumpversion.md @@ -51,7 +51,7 @@ bumpversion.__main__ :canonical: bumpversion.__version__ :type: str :value: > - '0.9.3' + '0.10.0' ```{autodoc2-docstring} bumpversion.__version__ ``` diff --git a/pyproject.toml b/pyproject.toml index 6d07d89a..191cb107 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -207,7 +207,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.9.3" +current_version = "0.10.0" commit = true commit_args = "--no-verify" tag = true