Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] added binaries to match nats-server #58

Merged
merged 3 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pushes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 21 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion nkeys.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down