From 9924180b6f92c558d4f58b5472ae1712057b166d Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Wed, 15 Sep 2021 14:26:01 +0200 Subject: [PATCH] doc: inverse major and minor In the example, the major an minor keyword were set in a strange order. I changed it to stay consistent with PEP --- docs/bump.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bump.md b/docs/bump.md index bf3b207cd6..38e4f5272b 100644 --- a/docs/bump.md +++ b/docs/bump.md @@ -199,7 +199,7 @@ In your `pyproject.toml` or `.cz.toml` ```toml [tool.commitizen] -tag_format = "v$minor.$major.$patch$prerelease" +tag_format = "v$major.$minor.$patch$prerelease" ``` The variables must be preceded by a `$` sign.