Skip to content

Commit 51853dd

Browse files
committed
Release v0.5.3 with Linux 32-bit ARM support
1 parent fde3716 commit 51853dd

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
version: latest
9090
args: release --rm-dist --release-notes changes.${{ env.VERSION }}.txt
9191
env:
92+
AUR_KEY: ${{ secrets.AUR_KEY }}
9293
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9394
GORELEASER_CURRENT_TAG: ${{ env.VERSION }}
9495
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,21 @@ builds:
77
binary: restack
88
env:
99
- CGO_ENABLED=0
10+
goarch:
11+
- 386
12+
- amd64
13+
- arm
14+
- arm64
1015
goos:
1116
- linux
1217
- windows
1318
- darwin
19+
goarm: [5, 6, 7]
20+
ignore:
21+
- goos: windows
22+
goarch: arm
23+
- goos: darwin
24+
goarch: arm
1425

1526
archives:
1627
- replacements:
@@ -28,7 +39,7 @@ brews:
2839
commit_msg_template: "{{ .ProjectName }}: Update formula to {{ .Tag }}"
2940
commit_author:
3041
name: Abhinav Gupta
31-
42+
3243
homepage: https://github.com/abhinav/restack
3344
description: "Makes interactive Git rebase nicer."
3445
license: "MIT"
@@ -37,6 +48,25 @@ brews:
3748
- name: git
3849
test: |
3950
system "#{bin}/restack -version"
51+
52+
aurs:
53+
- name: restack-bin
54+
homepage: https://github.com/abhinav/restack
55+
description: "Makes interactive Git rebase nicer."
56+
maintainers:
57+
- 'Abhinav Gupta <[email protected]>'
58+
license: "MIT"
59+
git_url: "ssh://[email protected]/restack-bin.git"
60+
skip_upload: auto
61+
private_key: '{{ .Env.AUR_KEY }}'
62+
package: |-
63+
install -Dm755 "./restack" "${pkgdir}/usr/bin/restack"
64+
install -Dm755 "./LICENSE" "${pkgdir}/usr/share/licenses/restack/LICENSE"
65+
commit_author:
66+
name: Abhinav Gupta
67+
68+
69+
4070
checksum:
4171
name_template: 'checksums.txt'
4272

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
Releases
22
========
33

4+
v0.5.3 (2022-02-19)
5+
-------------------
6+
7+
- Include binaries for Linux 32-bit ARM.
8+
9+
410
v0.5.2 (2021-10-28)
511
-------------------
612

7-
- Homebrew formula: Conform to new format.
13+
- Homebrew formula: Conform to new format.
814

915

1016
v0.5.1 (2021-09-18)

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package restack
55
// Note that semantic versioning in this repository applies to the `restack`
66
// executable, not to its library components. These APIs may break at any
77
// time without warning.
8-
const Version = "0.5.2"
8+
const Version = "0.5.3"

0 commit comments

Comments
 (0)