Skip to content

Commit

Permalink
Release v0.5.3 with Linux 32-bit ARM support
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinav committed Feb 19, 2022
1 parent fde3716 commit 51853dd
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ jobs:
version: latest
args: release --rm-dist --release-notes changes.${{ env.VERSION }}.txt
env:
AUR_KEY: ${{ secrets.AUR_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_CURRENT_TAG: ${{ env.VERSION }}
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
32 changes: 31 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,21 @@ builds:
binary: restack
env:
- CGO_ENABLED=0
goarch:
- 386
- amd64
- arm
- arm64
goos:
- linux
- windows
- darwin
goarm: [5, 6, 7]
ignore:
- goos: windows
goarch: arm
- goos: darwin
goarch: arm

archives:
- replacements:
Expand All @@ -28,7 +39,7 @@ brews:
commit_msg_template: "{{ .ProjectName }}: Update formula to {{ .Tag }}"
commit_author:
name: Abhinav Gupta
email: [email protected]
email: [email protected]
homepage: https://github.com/abhinav/restack
description: "Makes interactive Git rebase nicer."
license: "MIT"
Expand All @@ -37,6 +48,25 @@ brews:
- name: git
test: |
system "#{bin}/restack -version"
aurs:
- name: restack-bin
homepage: https://github.com/abhinav/restack
description: "Makes interactive Git rebase nicer."
maintainers:
- 'Abhinav Gupta <[email protected]>'
license: "MIT"
git_url: "ssh://[email protected]/restack-bin.git"
skip_upload: auto
private_key: '{{ .Env.AUR_KEY }}'
package: |-
install -Dm755 "./restack" "${pkgdir}/usr/bin/restack"
install -Dm755 "./LICENSE" "${pkgdir}/usr/share/licenses/restack/LICENSE"
commit_author:
name: Abhinav Gupta
email: [email protected]


checksum:
name_template: 'checksums.txt'

Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
Releases
========

v0.5.3 (2022-02-19)
-------------------

- Include binaries for Linux 32-bit ARM.


v0.5.2 (2021-10-28)
-------------------

- Homebrew formula: Conform to new format.
- Homebrew formula: Conform to new format.


v0.5.1 (2021-09-18)
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package restack
// Note that semantic versioning in this repository applies to the `restack`
// executable, not to its library components. These APIs may break at any
// time without warning.
const Version = "0.5.2"
const Version = "0.5.3"

0 comments on commit 51853dd

Please sign in to comment.