v0.21.7
Pre-release
Pre-release
Bug fixes
- A patch for
com_github_golang_protobuf
has been updated to no longer touch testdata files that were deleted in later versions upstream. This should make it easier to use newer versions ofprotobuf
. - Some missing platforms and toolchains are added.
go_embed_data
can now correctly embed.c
,.go
, and other source files.
WORKSPACE code
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "c1a5614131bbd4e4764ad782de261a2e9c4173c9528a50dbaefcbea6fce7d66a",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.21.7/rules_go-v0.21.7.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/v0.21.7/rules_go-v0.21.7.tar.gz",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains()