github bazelbuild/rules_go v0.20.0

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

Compatibility

  • Support for Go 1.10 has been removed.
  • objc = True and related Objective C attributes have been removed. go_library can build Objective C code directly.

See the deprecation schedule for rationale and migration information. Nothing else is currently deprecated.

Changes

This release contains no significant user facing changes. Several bugs are fixed, and dependencies are updated.

Updated dependencies

  • bazel_skylib is updated to 1.0.2.
  • org_golang_x_tools is updated to master as of 2019-10-05.
  • com_github_golang_protobuf is updated to v1.3.2, latest as of 2019-10-05.
  • com_github_mwitkow_proto_validators is updated to v0.2.0, latest as of 2019-10-05.
  • com_github_gogo_protobuf is updated to v1.3.0, latest as of 2019-10-05.
  • org_golang_google_genproto is updated to master as of 2019-10-05.
  • go_googleapis is updated to master as of 2019-10-05.

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/v0.20.0/rules_go-v0.20.0.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.20.0/rules_go-v0.20.0.tar.gz",
    ],
    sha256 = "078f2a9569fa9ed846e60805fb5fb167d6f6c4ece48e6d409bf5fb2154eaf0d8",
)

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.