Skip to content

0.16.10

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 12 Apr 15:41
· 5 commits to release-0.16 since this release

New Go versions

Go 1.12.3, 1.12.4, 1.11.8, and 1.11.9 are now supported.

1.12.4 and 1.11.9 were rebuilt with a C/C++ toolchain compatible with older Linux distributions. Ubuntu 14.04 and Debian Jessie are supported again without additional configuration.

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.10/rules_go-0.16.10.tar.gz",
    sha256 = "f8ec6d37131c126e0add5a88caf708917136206352ea8d59018a3c66ccba9ca9",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()