diff --git a/CHANGELOG.md b/CHANGELOG.md index f5612151..810fad5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # Changelog +## 0.9.3 (2023-08-25) +[Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.9.2...0.9.3) + +### Fixes + +- Fixed file configuration overrides. [c1ef3b2](https://github.com/callowayproject/bump-my-version/commit/c1ef3b290746e10e24dcdcb56c52effb6b324464) + + Fixes #55 + + The file config was ignoring falsey values when constructing the dict. + + It now ignores `None` values. +- Fixed documentation regarding regex config. [cd71a1a](https://github.com/callowayproject/bump-my-version/commit/cd71a1a4216286e49e0d1b8b9d867a26ee88eff8) + + - TOML requires the double backslash while INI doesn't +- Fixed requirements for docs. [7856ee0](https://github.com/callowayproject/bump-my-version/commit/7856ee01559289e943a26af7e36382855973e485) + +### New + +- Added documentation building workflow. [48980d7](https://github.com/callowayproject/bump-my-version/commit/48980d7d3445a323c7f8532a8edd61dc09d3fb51) + +### Other + +- [pre-commit.ci] pre-commit autoupdate. [7c38c40](https://github.com/callowayproject/bump-my-version/commit/7c38c401a3755329bce5f127a956e4603c7c4645) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.0.284 → v0.0.285](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.284...v0.0.285) + +- [pre-commit.ci] pre-commit autoupdate. [c30bd12](https://github.com/callowayproject/bump-my-version/commit/c30bd128ca27adea1a93876a29656c5cb7f6d178) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.0.282 → v0.0.284](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.282...v0.0.284) + +- [pre-commit.ci] pre-commit autoupdate. [95c89fb](https://github.com/callowayproject/bump-my-version/commit/95c89fb94ea6cfa5c9d28ed06ee6def9f98ab59f) + + **updates:** - [github.com/astral-sh/ruff-pre-commit: v0.0.281 → v0.0.282](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.281...v0.0.282) + +### Updates + +- Removed mentions of Python 3.7. [a91f690](https://github.com/callowayproject/bump-my-version/commit/a91f690ab2c36bef9243058f9e9bbdc1968e9af1) + + ## 0.9.2 (2023-08-07) [Compare the full difference.](https://github.com/callowayproject/bump-my-version/compare/0.9.1...0.9.2) diff --git a/bumpversion/__init__.py b/bumpversion/__init__.py index 0f1375e6..d90d7373 100644 --- a/bumpversion/__init__.py +++ b/bumpversion/__init__.py @@ -1,3 +1,3 @@ """Top-level package for bump-my-version.""" -__version__: str = "0.9.2" +__version__: str = "0.9.3" diff --git a/docsrc/reference/bumpversion/bumpversion.md b/docsrc/reference/bumpversion/bumpversion.md index 09d0763f..edf724b3 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.2' + '0.9.3' ```{autodoc2-docstring} bumpversion.__version__ ``` diff --git a/pyproject.toml b/pyproject.toml index 8559f3f7..6d07d89a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -207,7 +207,7 @@ order-by-type = true convention = "google" [tool.bumpversion] -current_version = "0.9.2" +current_version = "0.9.3" commit = true commit_args = "--no-verify" tag = true