Skip to content

1.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Mar 14:08
· 114 commits to master since this release
baea9a2

What's Changed

  • Flipped defaults of hermetic debug info flags (#206)
  • Added BAZEL_ALLOW_NON_APPLICATIONS_XCODE to run xcode-locator (#197)
  • Moved -ObjC into a separate feature (#210)
  • Removed -ObjC from C++ links (#211)
  • Added proper support for custom Swift toolchains (#213)
  • Added config_settings for platforms (#179)

This release is compatible with 5.x LTS and bazel 6.x rolling releases.

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.5.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 = "9a2338d6f8dad3244f823f2dc6084a03e4d0fbb27ca892dc970e6890d5b48184",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz",
)

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

apple_support_dependencies()