fix: allow to create major versions

This commit is contained in:
Guilhem Lavaux 2024-11-02 11:18:51 +02:00
parent a0d7442736
commit 83a6d989ec

View File

@ -68,9 +68,10 @@ env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>" default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options] [tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"] allowed_tags = ["major","build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"] minor_tags = ["feat"]
patch_tags = ["fix", "perf"] patch_tags = ["fix", "perf"]
major_tags = ["major"]
default_bump_level = 0 default_bump_level = 0
[tool.semantic_release.remote] [tool.semantic_release.remote]