github bazelbuild/rules_go v0.22.0

latest releases: v0.47.1, v0.47.0, v0.46.0...
pre-release4 years ago

New Go versions

Go 1.14 is now supported.

Compatibility

This release is outside the normal release schedule. It updates the version of com_github_golang_protobuf declared in go_rules_dependencies (along with other dependencies) in order to maintain compatibility with the newest version of com_google_cloud_go and other repositories that require the latest proto compiler.

Updated dependencies

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.0/rules_go-v0.22.0.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.0/rules_go-v0.22.0.tar.gz",
    ],
    sha256 = "94f90feaa65c9cdc840cd21f67d967870b5943d684966a47569da8073e42063d",
)

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.