New Go versions
Go 1.11.2 and 1.10.5 are now supported.
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.14.5/rules_go-0.14.5.tar.gz",
sha256 = "c13dfde5f4399282c2f8ee1925b8a9971722f8e902f2a744ed61c1401db244e1",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()