@@ -10,8 +10,8 @@ module.exports = {
10
10
{
11
11
// deprecations are patch releases
12
12
releaseRules : [ { type : "depr" , release : "patch" } ] ,
13
- preset : "conventionalcommits" ,
14
- } ,
13
+ preset : "conventionalcommits"
14
+ }
15
15
] ,
16
16
[
17
17
"@semantic-release/release-notes-generator" ,
@@ -27,17 +27,17 @@ module.exports = {
27
27
{ type : "refactor" , section : "Refactors" } ,
28
28
{ type : "perf" , section : "Performance" } ,
29
29
{ type : "test" , hidden : true } ,
30
- { type : "depr" , section : "Deprecations" } ,
31
- ] ,
32
- } ,
33
- } ,
30
+ { type : "depr" , section : "Deprecations" }
31
+ ]
32
+ }
33
+ }
34
34
] ,
35
35
[
36
36
"@semantic-release/changelog" ,
37
37
{
38
38
changelogTitle : "Release notes\n---" ,
39
- changelogFile : "docs/release_notes.md" ,
40
- } ,
39
+ changelogFile : "docs/release_notes.md"
40
+ }
41
41
] ,
42
42
[
43
43
"semantic-release-replace-plugin" ,
@@ -52,13 +52,13 @@ module.exports = {
52
52
file : "ibis/__init__.py" ,
53
53
hasChanged : true ,
54
54
numMatches : 1 ,
55
- numReplacements : 1 ,
56
- } ,
55
+ numReplacements : 1
56
+ }
57
57
] ,
58
- countMatches : true ,
59
- } ,
60
- ] ,
61
- } ,
58
+ countMatches : true
59
+ }
60
+ ]
61
+ }
62
62
] ,
63
63
[
64
64
"@semantic-release/exec" ,
@@ -67,22 +67,22 @@ module.exports = {
67
67
"ci/release/verify_conditions.sh ${options.dryRun}" ,
68
68
verifyReleaseCmd : "ci/release/verify_release.sh ${nextRelease.version}" ,
69
69
prepareCmd : "ci/release/prepare.sh ${nextRelease.version}" ,
70
- publishCmd : "ci/release/publish.sh" ,
71
- } ,
70
+ publishCmd : "ci/release/publish.sh"
71
+ }
72
72
] ,
73
73
[
74
74
"@semantic-release/github" ,
75
75
{
76
76
successComment : false ,
77
- assets : [ "dist/*.whl" ] ,
78
- } ,
77
+ assets : [ "dist/*.whl" ]
78
+ }
79
79
] ,
80
80
[
81
81
"@semantic-release/git" ,
82
82
{
83
83
assets : [ "pyproject.toml" , "docs/release_notes.md" , "ibis/__init__.py" ] ,
84
- message : "chore(release): ${nextRelease.version}" ,
85
- } ,
86
- ] ,
87
- ] ,
84
+ message : "chore(release): ${nextRelease.version}"
85
+ }
86
+ ]
87
+ ]
88
88
} ;
0 commit comments