diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 65aaef318..d700f4898 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.8.2 # automatically updated by Commitizen + rev: v3.9.0 # automatically updated by Commitizen hooks: - id: commitizen - id: commitizen-branch diff --git a/CHANGELOG.md b/CHANGELOG.md index d5e652ce4..16dee25c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ +## v3.9.0 (2023-09-15) + +### Feat + +- **commands**: add arg of cz commit to execute git add + +### Fix + +- **tests**: modify the arg of commit from add to all +- **commitizen**: Modify the function of the arg a of commit from git add all to git add update + +### Refactor + +- **commitizen**: add return type hint of git add function + ## v3.8.2 (2023-09-09) ### Refactor diff --git a/commitizen/__version__.py b/commitizen/__version__.py index 2ae7a9632..fcd7ddb9e 100644 --- a/commitizen/__version__.py +++ b/commitizen/__version__.py @@ -1 +1 @@ -__version__ = "3.8.2" +__version__ = "3.9.0" diff --git a/pyproject.toml b/pyproject.toml index 3a4b828b8..9b44ed249 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "3.8.2" +version = "3.9.0" tag_format = "v$version" version_files = [ "pyproject.toml:version", @@ -9,7 +9,7 @@ version_files = [ [tool.poetry] name = "commitizen" -version = "3.8.2" +version = "3.9.0" description = "Python commitizen client tool" authors = ["Santiago Fraire "] license = "MIT"