Skip to content

0.16.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 05 Nov 23:06
· 51 commits to release-0.16 since this release

New Go versions

Go 1.11.2 and 1.10.5 are now supported.

Bug fixes

  • #1808 - Don't compile cgo code with --coverage

Changes

WORKSPACE code

To use this release, add this code to your WORKSPACE file:

http_archive(
    name = "io_bazel_rules_go",
    url = "https://github.com/bazelbuild/rules_go/releases/download/0.16.2/rules_go-0.16.2.tar.gz",
    sha256 = "f87fa87475ea107b3c69196f39c82b7bbf58fe27c62a338684c20ca17d1d8613",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()