From 6b488b30789ff698e14eee0c6e3d1ab9c33638ec Mon Sep 17 00:00:00 2001 From: Alberto Ricart Date: Mon, 18 Sep 2023 08:05:08 -0500 Subject: [PATCH 1/3] [FIX] added binaries to match nats-server Fixes #32 --- .goreleaser.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 28ae8a8..e5c4f15 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -14,8 +14,26 @@ builds: - darwin - linux - windows + - freebsd goarch: - amd64 + - arm + - arm64 + - 386 + - mips64le + - s390x + goarm: + - 6 + - 7 + ignore: + - goos: darwin + goarch: 386 + - goos: freebsd + goarch: arm + - goos: freebsd + goarch: arm64 + - goos: freebsd + goarch: 386 dist: build @@ -24,6 +42,9 @@ archives: }}v{{ .Arm }}{{ end }}' wrap_in_directory: true format: zip + files: + - README.md + - LICENSE checksum: name_template: '{{ .ProjectName }}-v{{ .Version }}-checksums.txt' From d9358349661a09625246f07ba1c740fc41b63335 Mon Sep 17 00:00:00 2001 From: Alberto Ricart Date: Mon, 18 Sep 2023 08:07:12 -0500 Subject: [PATCH 2/3] bump version number --- nkeys.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nkeys.go b/nkeys.go index 67b0406..b83a99d 100644 --- a/nkeys.go +++ b/nkeys.go @@ -19,7 +19,7 @@ package nkeys import "io" // Version is our current version -const Version = "0.4.4" +const Version = "0.4.5" // KeyPair provides the central interface to nkeys. type KeyPair interface { From 53c07776673181060a391c9c7571a59f9c9412ac Mon Sep 17 00:00:00 2001 From: Alberto Ricart Date: Mon, 18 Sep 2023 08:11:11 -0500 Subject: [PATCH 3/3] bump go to 1.21.x --- .github/workflows/pushes.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pushes.yaml b/.github/workflows/pushes.yaml index 0ad0cbd..66335de 100644 --- a/.github/workflows/pushes.yaml +++ b/.github/workflows/pushes.yaml @@ -33,10 +33,10 @@ jobs: strategy: matrix: include: - - go: '1.20.x' + - go: '1.21.x' os: ubuntu-latest canonical: true - - go: '1.19.x' + - go: '1.20.x' os: ubuntu-latest canonical: false diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 945f617..c539642 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,7 +36,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: '1.19' + go-version: '1.21' check-latest: true - name: Basic integrity checks