From a1297bf3a70ad6939f13eb796353c26416c385f3 Mon Sep 17 00:00:00 2001 From: Lasse Folger Date: Wed, 6 Dec 2023 09:47:44 +0100 Subject: [PATCH] all: set required version to 1.17 1.17 is the oldest version we are testing and thus this is the oldest version we can guarantee this repository works for. We also plan to use features of newer Go version (up to 1.17) in following CLs. Other changed to the go.mod file were introduced by `go mod tidy` Change-Id: I79034d0a5f9c9ac9608308d01bc7e35725b2b592 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/547337 Commit-Queue: Michael Stapelberg Auto-Submit: Michael Stapelberg Reviewed-by: Michael Stapelberg LUCI-TryBot-Result: Go LUCI --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 8858601bb..d0b47c131 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,10 @@ module google.golang.org/protobuf -go 1.11 +go 1.17 require ( github.com/golang/protobuf v1.5.0 github.com/google/go-cmp v0.5.5 ) + +require golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect