New Go versions
Go 1.14 is now supported.
Compatibility
This release is outside the normal release schedule. It updates the version of com_github_golang_protobuf
declared in go_rules_dependencies
(along with other dependencies) in order to maintain compatibility with the newest version of com_google_cloud_go
and other repositories that require the latest proto compiler.
Updated dependencies
platforms
(https://github.com/bazelbuild/platforms) has been added atmaster
as of 2020-02-21 (see bazelbuild/bazel#8622).rules_cc
(https://github.com/bazelbuild/rules_cc) has been added atmaster
as of 2020-02-21 (see bazelbuild/bazel#8743).org_golang_x_tools
is updated tomaster
as of 2020-02-21.com_github_golang_protobuf
is updated tov1.3.3
, latest as of 2020-02-21.org_golang_google_genproto
is updated tomaster
as of 2020-02-21.go_googleapis
is updated tomaster
as of 2020-02-21.
WORKSPACE code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.0/rules_go-v0.22.0.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.22.0/rules_go-v0.22.0.tar.gz",
],
sha256 = "94f90feaa65c9cdc840cd21f67d967870b5943d684966a47569da8073e42063d",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()