Skip to content

1.17.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Sep 19:22
· 5 commits to master since this release
07dd08d

What's Changed

  • support selectively disabling NS_BLOCK_ASSERTIONS for opt builds by @aaronsky in #341
  • Use -Xlinker for -install_name by @fmeum in #343

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.17.0", 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 = "02f7456e589471dcfc73f1b9ca7f2c2ea5ca4aea999674abea9aebe818700b6e",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.17.0/apple_support.1.17.0.tar.gz",
)

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

apple_support_dependencies()

load("@bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()