diff --git a/.gitignore b/.gitignore index e59e3a8..79f07a5 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,4 @@ _generate/ *.py[cod] *.egg-info *env* +.mypy_cache/ diff --git a/pyproject.toml b/pyproject.toml index bb62162..85401dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,3 +60,9 @@ test-command = "pytest {project}/Python/tests" test-extras = ["test"] # Setuptools bug causes collision between pypy and cpython artifacts before-build = "rm -rf {project}/build" + +[tool.commitizen] +version = "0.2.2" +tag_format = "v$version" +version_files = ["pyproject.toml:version", "setup.py"] +update_changelog_on_bump = true