We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6418fcf commit 5dacbd3Copy full SHA for 5dacbd3
.goreleaser.yml
@@ -0,0 +1,34 @@
1
+project_name: voidify
2
+builds:
3
+ - binary: voidify
4
+ goos:
5
+ - linux
6
+ - darwin
7
+ goarch:
8
+ - amd64
9
+changelog:
10
+ sort: asc
11
+ abbrev: 0
12
+ filters:
13
+ exclude: [ "^*.md", "^*.ya?ml" ]
14
+ groups:
15
+ - title: Features
16
+ regexp: ^.*?(F|f)eature.*?$
17
+ order: 0
18
+ - title: Bug fixes
19
+ regexp: ^.*?((B|b)ug)|((F|f)ix).*?$
20
+ order: 1
21
+ - title: Improvements
22
+ regexp: ^.*?(I|i)mprove.*?$
23
+ order: 2
24
+ - title: Updates
25
+ regexp: ^.*?(U|u)pdate.*?$
26
+ order: 3
27
+ - title: Security issues
28
+ regexp: ^.*?(S|s)ecurity.*?$
29
+ order: 4
30
+ - title: Delete unused or stale
31
+ regexp: ^.*?((D|d)elete)|((U|u)nused)|((S|s)tale).*?$
32
+ order: 5
33
+ - title: Others
34
+ order: 999
0 commit comments