github bazelbuild/rules_go 0.16.1

latest releases: v0.50.1, v0.50.0, v0.49.0...
pre-release5 years ago

Bug fixes

  • #1776 Exclude srcs and their runfiles from Go rule runfiles
  • #1778 nogo: write vet.cfg to random temporary configuration file
  • #1783 Fix execute arguments to use list (thanks @mauriciogg)
  • #1785 De-duplicate dependencies with the same import path

Updated dependencies

  • org_golang_x_tools updated to master as of 2018-10-22. We've also added go_tool_library targets for analysis packages and their dependencies for use with nogo.

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.1/rules_go-0.16.1.tar.gz",
    sha256 = "f5127a8f911468cd0b2d7a141f17253db81177523e4429796e14d429f5444f5f",
)
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.