Skip to content

Commit b438e0e

Browse files
committed
Fix release archive names, release v0.11.1
1 parent 4011848 commit b438e0e

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.changes/v0.11.1.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## v0.11.1 - 2023-06-11
2+
### Fixed
3+
- Fix release archive names for AUR, Homebrew, etc.

.goreleaser.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ builds:
2929
archives:
3030
- name_template: >-
3131
{{ .ProjectName }}_
32-
{{ .Version }}_
32+
{{- .Version }}_
3333
{{- title .Os }}_
3434
{{- if eq .Arch "amd64" }}x86_64
3535
{{- else if eq .Arch "386" }}i386
3636
{{- else }}{{ .Arch }}{{ end }}
37-
{{ with .Arm }}v{{ . }}{{ end }}
37+
{{- with .Arm }}v{{ . }}{{ end }}
3838
3939
aurs:
4040
- name: tmux-fastcopy-bin

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
66
and is generated by [Changie](https://github.com/miniscruff/changie).
77

8+
## v0.11.1 - 2023-06-11
9+
### Fixed
10+
- Fix release archive names for AUR, Homebrew, etc.
11+
812
## v0.11.0 - 2023-06-11
913
### Changed
1014
- Relicense under GPL-2.0.

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ IFS=$'\n\t'
88

99
IMPORTPATH=github.com/abhinav/tmux-fastcopy
1010
NAME=tmux-fastcopy
11-
VERSION=0.11.0
11+
VERSION=0.11.1
1212

1313
while getopts 'c:' opt; do
1414
case "$opt" in

0 commit comments

Comments
 (0)