all: update to protoc v3.12.0-rc1

This CL continues to hard-code the exact commit since the protoc release
uses inconsistent naming for its download URLs.

Change-Id: I7551c4b2f9b7b89c1c85169faffc03641f21bc11
Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/232097
Reviewed-by: Damien Neil <dneil@google.com>
This commit is contained in:
Joe Tsai 2020-05-04 11:09:31 -07:00 committed by Joe Tsai
parent 90042a5531
commit 164b526074

View File

@ -32,7 +32,7 @@ var (
regenerate = flag.Bool("regenerate", false, "regenerate files")
buildRelease = flag.Bool("buildRelease", false, "build release binaries")
protobufVersion = "4b4e6674" // pre-release of 3.12.x
protobufVersion = "ef7cc811" // v3.12.0-rc1
golangVersions = []string{"1.9.7", "1.10.8", "1.11.13", "1.12.17", "1.13.8", "1.14"}
golangLatest = golangVersions[len(golangVersions)-1]