github bazelbuild/rules_go 0.14.2

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

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.14.2/rules_go-0.14.2.tar.gz",
    sha256 = "f560ccb2c5161fc64ac9c9fd5a38c81971daae668968549baae88d4d17c24893",
)
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.