|
9 | 9 | } |
10 | 10 | ], |
11 | 11 | "plugins": [ |
| 12 | + "@artessan-devs/sr-uv-plugin", |
12 | 13 | [ |
13 | 14 | "@semantic-release/commit-analyzer", |
14 | 15 | { |
15 | 16 | "preset": "conventionalcommits", |
16 | 17 | "releaseRules": [ |
17 | | - {"type": "docs", "scope": "README", "release": "patch"}, |
18 | | - {"type": "refactor", "release": "patch"}, |
19 | | - {"type": "style", "release": "patch"}, |
20 | | - {"type": "test", "release": false}, |
21 | | - {"type": "chore", "release": false} |
| 18 | + { "breaking": true, "release": "minor" }, |
| 19 | + { "type": "feat", "release": "patch" }, |
| 20 | + { "type": "fix", "scope": "docs", "release": false }, |
| 21 | + { "type": "docs", "scope": "README", "release": "patch" }, |
| 22 | + { "type": "refactor", "release": "patch" }, |
| 23 | + { "type": "style", "release": "patch" }, |
| 24 | + { "type": "test", "release": false }, |
| 25 | + { "type": "chore", "release": false } |
22 | 26 | ] |
23 | 27 | } |
24 | 28 | ], |
|
28 | 32 | "preset": "conventionalcommits", |
29 | 33 | "presetConfig": { |
30 | 34 | "types": [ |
31 | | - {"type": "feat", "section": "Features"}, |
32 | | - {"type": "fix", "section": "Bug Fixes"}, |
33 | | - {"type": "docs", "section": "Documentation"}, |
34 | | - {"type": "refactor", "section": "Code Refactoring"}, |
35 | | - {"type": "perf", "section": "Performance Improvements"} |
| 35 | + { "type": "feat", "section": "Features" }, |
| 36 | + { "type": "fix", "section": "Bug Fixes" }, |
| 37 | + { "type": "docs", "section": "Documentation" }, |
| 38 | + { "type": "refactor", "section": "Code Refactoring" }, |
| 39 | + { "type": "perf", "section": "Performance Improvements" } |
36 | 40 | ] |
37 | 41 | } |
38 | 42 | } |
|
47 | 51 | "@semantic-release/git", |
48 | 52 | { |
49 | 53 | "assets": ["CHANGELOG.md", "pyproject.toml"], |
50 | | - "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" |
| 54 | + "message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}" |
51 | 55 | } |
52 | 56 | ], |
53 | 57 | [ |
|
0 commit comments