diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 83a0dbfec4..51967aff18 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: no-commit-to-branch - repo: https://github.com/commitizen-tools/commitizen - rev: v2.39.0 # automatically updated by Commitizen + rev: v2.39.1 # automatically updated by Commitizen hooks: - id: commitizen - id: commitizen-branch diff --git a/CHANGELOG.md b/CHANGELOG.md index 79b65e15a4..fda0316343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## v2.39.1 (2022-12-31) + +### Fix + +- filter git diff from commit message + ## v2.39.0 (2022-12-31) ### Feat diff --git a/commitizen/__version__.py b/commitizen/__version__.py index 1560a0fff0..c124af4fcc 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "2.39.0" +__version__ = "2.39.1" diff --git a/pyproject.toml b/pyproject.toml index de7a7052e0..93e504c3a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "2.39.0" +version = "2.39.1" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -30,7 +30,7 @@ exclude = ''' [tool.poetry] name = "commitizen" -version = "2.39.0" +version = "2.39.1" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"