Skip to content

0.14.4

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 24 Oct 18:31
· 15 commits to release-0.14 since this release

Bug fixes

  • #1776 Exclude srcs and their runfiles from Go rule runfiles
  • #1785 De-duplicate dependencies with the same import path

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