diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7c8d5dae6..d5362edf5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -46,7 +46,7 @@ repos: exclude: "poetry.lock" - repo: https://github.com/commitizen-tools/commitizen - rev: v3.17.1 # automatically updated by Commitizen + rev: v3.17.2 # automatically updated by Commitizen hooks: - id: commitizen - id: commitizen-branch diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b1b49e72..e94f04133 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## v3.17.2 (2024-03-07) + +### Fix + +- **changelog**: ensure `changelog_message_builder_hook` can access and modify `change_type` (#1002) + ## v3.17.1 (2024-03-07) ### Fix diff --git a/commitizen/__version__.py b/commitizen/__version__.py index 7e84c71b2..4874dc2b7 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "3.17.1" +__version__ = "3.17.2" diff --git a/pyproject.toml b/pyproject.toml index 80578d573..9e0356b68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "3.17.1" +version = "3.17.2" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -9,7 +9,7 @@ version_files = [ [tool.poetry] name = "commitizen" -version = "3.17.1" +version = "3.17.2" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"