diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 301797800..350a7a95b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: exclude: "poetry.lock" - repo: https://github.com/commitizen-tools/commitizen - rev: v3.26.2 # automatically updated by Commitizen + rev: v3.27.0 # automatically updated by Commitizen hooks: - id: commitizen - id: commitizen-branch diff --git a/CHANGELOG.md b/CHANGELOG.md index b73d8c09e..496d9f5fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v3.27.0 (2024-05-22) + +### Feat + +- **config_files**: add suport for "cz.toml" config file + ## v3.26.2 (2024-05-22) ### Fix diff --git a/commitizen/__version__.py b/commitizen/__version__.py index b09545868..62bfee6c5 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "3.26.2" +__version__ = "3.27.0" diff --git a/pyproject.toml b/pyproject.toml index 22eece6bc..523f271c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "3.26.2" +version = "3.27.0" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -9,7 +9,7 @@ version_files = [ [tool.poetry] name = "commitizen" -version = "3.26.2" +version = "3.27.0" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"