Skip to content

0.14.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 25 Aug 20:14
· 35 commits to release-0.14 since this release

Go support

Added support for Go 1.11 and 1.10.14.

Bug fixes

  • #1688 - Build tags are space separated, not comma separated.

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