diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f6d6b193e..ddfa7f2cfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## v2.17.12 (2021-07-06) + +### Fix + +- **git.py**: ensure signed commits in changelog when git config log.showsignature=true + ## v2.17.11 (2021-06-24) ### Fix diff --git a/commitizen/__version__.py b/commitizen/__version__.py index 37684dd0a9..2943092d1b 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "2.17.11" +__version__ = "2.17.12" diff --git a/pyproject.toml b/pyproject.toml index 2e7f806d4d..a3dcdfe264 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "2.17.11" +version = "2.17.12" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -29,7 +29,7 @@ exclude = ''' [tool.poetry] name = "commitizen" -version = "2.17.11" +version = "2.17.12" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"