diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fa1b9cdbcf..d6c156a530 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.11.0 # automatically updated by Commitizen + rev: v3.12.0 # automatically updated by Commitizen hooks: - id: commitizen - id: commitizen-branch diff --git a/CHANGELOG.md b/CHANGELOG.md index d85c52f103..1b6be177f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ +## v3.12.0 (2023-10-18) + +### Feat + +- **formats**: expose some new customizable changelog formats on the `commitizen.changelog_format` endpoint (Textile, AsciiDoc and RestructuredText) +- **template**: add `changelog --export-template` command +- **template**: allow to override the template from cli, configuration and plugins + +### Fix + +- **filename**: ensure `file_name` can be passed to `changelog` from `bump` command + +## 3.11.0 (2023-10-17) + ## v3.11.0 (2023-10-17) ### Feat diff --git a/commitizen/__version__.py b/commitizen/__version__.py index fcbd6954b9..d1a7f1e0d2 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "3.11.0" +__version__ = "3.12.0" diff --git a/pyproject.toml b/pyproject.toml index 48133f1e11..3dc780baf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "3.11.0" +version = "3.12.0" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -9,7 +9,7 @@ version_files = [ [tool.poetry] name = "commitizen" -version = "3.11.0" +version = "3.12.0" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"