Skip to content

1.15.1

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Apr 19:35
· 23 commits to master since this release
cf271a3

What's Changed

  • Remove unnecessary cc_toolchain_config compiler API by @keith in #307
  • Tweak visibility attributes/defaults. by @keith in #310
  • Shorten the path used for the processor script. by @keith in #311
  • Add support for BAZEL_USE_CPP_ONLY_TOOLCHAIN by @keith in #313
  • Update platforms to 0.0.9 by @luispadron in #317

This release is compatible with 5.x LTS, 6.x LTS, 7.x LTS, and 8.x rolling releases

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.15.1", repo_name = "build_bazel_apple_support")

Workspace Snippet

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

http_archive(
    name = "build_bazel_apple_support",
    sha256 = "c4bb2b7367c484382300aee75be598b92f847896fb31bbd22f3a2346adf66a80",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.15.1/apple_support.1.15.1.tar.gz",
)

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()