github bazelbuild/rules_go 0.15.5

latest releases: v0.47.0, v0.46.0, v0.45.1...
pre-release5 years ago

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

Don't miss a new rules_go release

NewReleases is sending notifications on new releases.