|
1 | 1 | [project] |
2 | 2 | name = "hatiyar" |
3 | | -version = "1.2.0" |
| 3 | +version = "1.1.0" |
4 | 4 | description = "security toolkit designed for penetration testing, vulnerability assessment, and security research." |
5 | 5 | readme = "README.md" |
6 | 6 | requires-python = ">=3.9" |
@@ -72,37 +72,28 @@ tag_format = "v{version}" |
72 | 72 | major_on_zero = true |
73 | 73 | allow_zero_version = true |
74 | 74 |
|
75 | | -# Branch configuration |
| 75 | +# Branch configuration - only main branch for releases |
76 | 76 | [tool.semantic_release.branches.main] |
77 | 77 | match = "(main|master)" |
78 | 78 | prerelease = false |
79 | 79 |
|
80 | | -[tool.semantic_release.branches.develop] |
81 | | -match = "develop" |
82 | | -prerelease = true |
83 | | -prerelease_token = "rc" |
84 | | - |
85 | | -[tool.semantic_release.branches.beta] |
86 | | -match = "beta" |
87 | | -prerelease = true |
88 | | -prerelease_token = "beta" |
89 | | - |
90 | 80 | # Commit parser options |
91 | 81 | [tool.semantic_release.commit_parser_options] |
92 | 82 | allowed_tags = [ |
93 | 83 | "build", "chore", "ci", "docs", "feat", "fix", |
94 | 84 | "perf", "refactor", "style", "test", "revert" |
95 | 85 | ] |
96 | 86 | minor_tags = ["feat"] |
97 | | -patch_tags = ["fix", "perf", "refactor"] |
| 87 | +patch_tags = ["fix", "perf", "refactor", "docs"] |
98 | 88 |
|
99 | 89 | # Changelog configuration |
100 | 90 | [tool.semantic_release.changelog] |
101 | | -template_dir = "templates" |
102 | | -exclude_commit_patterns = [] |
103 | | - |
104 | | -[tool.semantic_release.changelog.default_templates] |
105 | 91 | changelog_file = "CHANGELOG.md" |
| 92 | +exclude_commit_patterns = [ |
| 93 | + "^chore\\(release\\):", |
| 94 | + "^Merge pull request", |
| 95 | + "^Merge branch" |
| 96 | +] |
106 | 97 |
|
107 | 98 | # Pytest configuration |
108 | 99 | [tool.pytest.ini_options] |
|
0 commit comments