diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5c9623149..20b8d08ec 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.21.3 # automatically updated by Commitizen + rev: v3.22.0 # automatically updated by Commitizen hooks: - id: commitizen - id: commitizen-branch diff --git a/CHANGELOG.md b/CHANGELOG.md index a27d8610e..cf16e6a10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v3.22.0 (2024-04-11) + +### Feat + +- **cli**: add config option to specify config file path + ## v3.21.3 (2024-03-30) ### Refactor diff --git a/commitizen/__version__.py b/commitizen/__version__.py index 322a27ea5..659cac322 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "3.21.3" +__version__ = "3.22.0" diff --git a/pyproject.toml b/pyproject.toml index 3410a50ab..b6d766ef1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "3.21.3" +version = "3.22.0" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -9,7 +9,7 @@ version_files = [ [tool.poetry] name = "commitizen" -version = "3.21.3" +version = "3.22.0" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"