Skip to content

v0.23.13

Pre-release
Pre-release
Compare
Choose a tag to compare
@jayconrod jayconrod released this 26 Oct 20:30
· 5 commits to release-0.23 since this release

Bug fixes

  • Fixed an issue with include paths in cgo libraries in external repositories
    that was exposed in Bazel 3.7.0.
  • Subcommand errors are now less verbose.

WORKSPACE code

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

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

load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains()