From 2494df17d4a1005076dc571d5385e2444a930f88 Mon Sep 17 00:00:00 2001 From: Noah Treuhaft Date: Thu, 3 Oct 2024 18:51:15 -0400 Subject: [PATCH] Upgrade to Go 1.23 --- 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 dbc494e689..143f6b765b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ in [runtime/sam/expr/agg](runtime/sam/expr/agg). ## Development -`zed` requires Go 1.21 or later, and uses [Go modules](https://github.com/golang/go/wiki/Modules). +`zed` requires Go 1.23 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 bb69866783..63b00c83ee 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.21 or later is +> [Go install page](https://golang.org/doc/install). Go 1.23 or later is > required. Once installed, run a [quick test](#quick-tests). diff --git a/go.mod b/go.mod index fb6e3fcf29..cede4362fe 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/brimdata/zed -go 1.21 +go 1.23 require ( github.com/agnivade/levenshtein v1.1.1