From 6de9e2f71a38c4c8e63d4ba9476347cc26302ade Mon Sep 17 00:00:00 2001 From: Noah Treuhaft Date: Fri, 28 Apr 2023 15:46:26 -0400 Subject: [PATCH] Upgrade to Go 1.20 --- CONTRIBUTING.md | 2 +- docs/install.md | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 377230fd7..9d5d2c08e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ in [runtime/expr/agg](runtime/expr/agg). ## Development -`zed` requires Go 1.19 or later, and uses [Go modules](https://github.com/golang/go/wiki/Modules). +`zed` requires Go 1.20 or later, and uses [Go modules](https://github.com/golang/go/wiki/Modules). Compilation for 32-bit target environments is not currently supported (see [zed/4044](https://github.com/brimdata/zed/issues/4044)). Dependencies are specified in the [`go.mod` file](./go.mod) and fetched diff --git a/docs/install.md b/docs/install.md index 08b8f5dd6..c7f380076 100644 --- a/docs/install.md +++ b/docs/install.md @@ -48,7 +48,7 @@ go install github.com/brimdata/zed/cmd/{zed,zq}@latest This installs the `zed` and `zq` binaries in your `$GOPATH/bin`. > If you don't have Go installed, download and install it from the -> [Go install page](https://golang.org/doc/install). Go 1.19 or later is +> [Go install page](https://golang.org/doc/install). Go 1.20 or later is > required. Once installed, run a [quick test](#quick-tests). diff --git a/go.mod b/go.mod index 6abe26133..9358535e5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/brimdata/zed -go 1.19 +go 1.20 require ( github.com/agnivade/levenshtein v1.1.1