Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
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/brimdata/zed

go 1.19
go 1.20

require (
github.com/agnivade/levenshtein v1.1.1
Expand Down