Skip to content

Commit

Permalink
build: Require go 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
wader committed Sep 12, 2021
1 parent d9b45ba commit f600f2e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ brew install wader/tap/fq

### Build from source

Make sure you have go 1.16 or later then do:
Make sure you have go 1.17 or later and then do:
```sh
# build latest master
# build and install latest master
go install github.com/wader/fq@latest
```
and the binary should end up at `$GOPATH/bin/fq`.
Expand Down
2 changes: 1 addition & 1 deletion format/flv/flv.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//+build ignore
//go:build ignore

package flv

Expand Down
2 changes: 1 addition & 1 deletion format/fuzz_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build gofuzzbeta
//go:build gofuzzbeta

package format_test

Expand Down
7 changes: 6 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wader/fq

go 1.16
go 1.17

require (
// bump: go-difflib /github.com\/pmezard\/go-difflib v(.*)/ git://github.com/pmezard/go-difflib|^1
Expand All @@ -12,3 +12,8 @@ require (
// fork of github.com/chzyer/readline
github.com/wader/readline v0.0.0-20210817095433-c868eb04b8b2
)

require (
github.com/itchyny/timefmt-go v0.1.3 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
)
2 changes: 1 addition & 1 deletion pkg/decode/decode_decoder_gen.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//+build ignore
//go:build ignore

package decode

Expand Down
2 changes: 1 addition & 1 deletion pkg/decode/decode_decoder_gen.go.tmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//+build ignore
//go:build ignore

package decode

Expand Down

0 comments on commit f600f2e

Please sign in to comment.