-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update supported Go language versions to include 1.20.0
Signed-off-by: avifenesh <[email protected]>
- Loading branch information
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ install-build-tools: | |
go install google.golang.org/protobuf/cmd/[email protected] | ||
cargo install cbindgen | ||
|
||
install-dev-tools-go1.18: | ||
install-dev-tools-go1.20: | ||
go install github.com/vakenbolt/[email protected] | ||
go install mvdan.cc/[email protected] | ||
go install github.com/segmentio/[email protected] | ||
go install honnef.co/go/tools/cmd/[email protected] | ||
|
||
install-dev-tools-go1.18.10: install-dev-tools-go1.18 | ||
install-dev-tools-go1.20.0: install-dev-tools-go1.20 | ||
|
||
install-dev-tools-go1.22: | ||
go install github.com/vakenbolt/[email protected] | ||
|
@@ -20,7 +20,7 @@ install-dev-tools-go1.22.0: install-dev-tools-go1.22 | |
|
||
install-dev-tools: install-dev-tools-go1.22.0 | ||
|
||
install-tools-go1.18.10: install-build-tools install-dev-tools-go1.18.10 | ||
install-tools-go1.20.0: install-build-tools install-dev-tools-go1.20.0 | ||
|
||
install-tools-go1.22.0: install-build-tools install-dev-tools-go1.22.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
module github.com/valkey-io/valkey-glide/go/glide/benchmarks | ||
|
||
go 1.18 | ||
go 1.20 | ||
|
||
replace github.com/valkey-io/valkey-glide/go/glide => ../ | ||
|
||
require ( | ||
github.com/valkey-io/valkey-glide/go/glide v0.0.0 | ||
github.com/redis/go-redis/v9 v9.5.1 | ||
github.com/redis/go-redis/v9 v9.7.0 | ||
) | ||
|
||
require ( | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
) |