Skip to content

0.17.7

Pre-release
Pre-release

Choose a tag to compare

@jayconrod jayconrod released this 12 Jun 17:16
· 17 commits to release-0.17 since this release

New Go versions

Go 1.12.6 and 1.11.11 are now supported.

WORKSPACE code

To use this release, add this code to your WORKSPACE file:

http_archive(
    name = "io_bazel_rules_go",
    urls = [
        "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/0.17.7/rules_go-0.17.7.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/0.17.7/rules_go-0.17.7.tar.gz",
    ],
    sha256 = "ce1afed0075e01bd883cfbafbbcc26bfab392eb24854e07a20be78ab13f9e15e",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()