Skip to content

Commit

Permalink
v1.1.1 update
Browse files Browse the repository at this point in the history
Using Go1.20 to continue supporting Windows 7.
  • Loading branch information
AnomalRoil committed Jan 19, 2024
1 parent 1f7b571 commit a969be9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.20

- name: Staticheck
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.20'
- run: go version

- name: Run GoReleaser
Expand Down
10 changes: 4 additions & 6 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ builds:
- id: tlock
binary: tle
main: ./cmd/tle/tle.go
flags:
- -trimpath
env:
- CGO_ENABLED=0
asmflags:
- all=-trimpath={{.Env.HOME}}
gcflags:
- all=-trimpath={{.Env.HOME}}
flags:
- -trimpath
ldflags:
- -s -w -buildid=
goos:
- darwin
- linux
Expand Down
2 changes: 1 addition & 1 deletion cmd/tle/commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (

// =============================================================================

const usage = `tlock v1.1.0 -- github.com/drand/tlock
const usage = `tlock v1.1.1 -- github.com/drand/tlock
Usage:
tle [--encrypt] (-r round)... [--armor] [-o OUTPUT] [INPUT]
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/drand/tlock

go 1.19
go 1.20

require (
filippo.io/age v1.1.1
Expand Down

0 comments on commit a969be9

Please sign in to comment.