1.18.1
What's Changed
- Use a BCR test module for tests by @brentleyjones in #366
- add
suppress_warnings
feature by @aaronsky in #367 - Add no_dotd_file well known feature by @keith in #356
- Remove bazel 5.x workaround by @keith in #369
- Remove unnecessary executable from toolchain by @keith in #370
- Revert "Enable link time -Os in opt builds (#348)" by @keith in #372
Full Changelog: 1.18.0...1.18.1
This release is compatible with 6.x LTS, 7.x LTS, and 8.x rolling releases.
MODULE.bazel Snippet
bazel_dep(name = "apple_support", version = "1.18.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 = "d71b02d6df0500f43279e22400db6680024c1c439115c57a9a82e9effe199d7b",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.18.1/apple_support.1.18.1.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()