New Go versions
- Go 1.11.1 is now supported.
Bug fixes
- #1721 - Fix non-root package testing on Windows (thanks @filipesilva!)
- #1724 - Add more explicit dependencies for bazel_test
- #1727 - link: take absolute path of main file
- #1731 - Do not depend on stdlib for CGo codegen anymore (thanks @steeve!)
- #1732 - Add fake buildid when linking (thanks @steeve!)
- #1747 - Use find_cpp_toolchain instead of ctx.fragments.cpp
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.15.4/rules_go-0.15.4.tar.gz",
sha256 = "7519e9e1c716ae3c05bd2d984a42c3b02e690c5df728dc0a84b23f90c355c5a1",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()