这是indexloc提供的服务,不要输入任何密码
Skip to content

1.11.0

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Oct 14:27
· 115 commits to master since this release
21bd81c

What's Changed

  • Added an "apple" constraint to be associated with all Apple platform definitions. by @thii in #266
  • Added "apple" constraint to all Apple platform definitions by @thii in #267
  • Moved methods to report platform constraints as strings to apple_support. by @thii in #269
  • Added //config:platforms bzl_library by @brentleyjones in #275

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

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.11.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 = "469116ac70f0aa15e3ca583749c69ab3c3f062ca55f32166e1133db015f38e20",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.11.0/apple_support.1.11.0.tar.gz",
)

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

apple_support_dependencies()