Skip to content

0.11.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 12 Jun 18:49

Go support

Added support for Go 1.10.3 and 1.9.7.

Bug fixes

  • #1524 - Add extra_files attribute to bazel_test
  • #1542 - Fix deprecated skylark
  • #1541 - Inherit importmap from embedded libraries
  • #1521 - Allow .s files to include other .s files
  • #1510 - Change base URL that SDKs are downloaded from
  • #1497 - Enable use of FreeBSD SDK
  • #1493 - Propagate restricted_to and compatible_with attributes in cgo rules

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