What's Changed
- Handle Xcode version starting with path separator by @ma-oli in #481
- Update rules_cc and fix bazel 9.x support by @keith in #482
Full Changelog: 1.24.3...1.24.4
This release is compatible with 7.x LTS, 8.x LTS, and rolling releases.
MODULE.bazel Snippet
bazel_dep(name = "apple_support", version = "1.24.4", 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 = "93456fae59f225693fae7e0fdbb2899433766d7e8c0797ed28e35c6f04b5f255",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.24.4/apple_support.1.24.4.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()