github bazelbuild/rules_go 0.18.10

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

New Go versions

Go 1.13 is now supported.

Note that versions of Gazelle prior to 0.18.2 are not compatible with Go 1.13, so make sure to upgrade Gazelle at the same time.

Bug fixes

Several bug fixes included, primarily for improving compatibility with Go 1.13.

WORKSPACE code

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    urls = [
        "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/0.18.10/rules_go-0.18.10.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/0.18.10/rules_go-0.18.10.tar.gz",
    ],
    sha256 = "cd2275aa07cc82d6cc740fed90dabbca1351d8d9abb4acac624bcc607adafe39",
)

load("@io_bazel_rules_go//go:deps.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.