Skip to content

0.14.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 16 Oct 21:23
· 19 commits to release-0.14 since this release

Bug fixes

  • #1768 - Migrate to cc_common for collecting C/C++ paths and options
  • #1767 - lcov_merger: workaround for Bazel 0.18.0 coverage
  • #1764 - Use a more unique name for the cover variable
  • #1757 - Use absolute paths to make GoPack work on Windows
  • #1754 - Define the toolchain_type target used by go rules.

NOTE: The minimum Bazel version for this release is now 0.17.2 because cc_common is not available in older versions.

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