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
- #1797 - The
js_wasm
toolchain is now supported (thanks @tiziano88)
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()