Skip to content

2.0.0-rc2

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Dec 01:12
· 586 commits to master since this release
856ebda

What's Changed

  • Add mnemonic to FindProvisioningProfile, thanks @erikkerber!
  • Ignore skip_codesign_simulator_bundles for frameworks when building for device, thanks @BalestraPatrick!
  • Allow for deps with only CcInfo on framework imports, thanks @dierksen!
  • Update rules_swift
  • The 2.x releases drop support for Bazel 5.x TLS. Use the 1.x releases for bazel 5.x

This release is compatible with: 6.0.0rc3+

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_rules_apple",
    sha256 = "44c803313904f94ea14f55269c9ffabd355f66c9dca98768b907aff61c97abc3",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/2.0.0-rc2/rules_apple.2.0.0-rc2.tar.gz",
)

load(
    "@build_bazel_rules_apple//apple:repositories.bzl",
    "apple_rules_dependencies",
)

apple_rules_dependencies()

load(
    "@build_bazel_rules_swift//swift:repositories.bzl",
    "swift_rules_dependencies",
)

swift_rules_dependencies()

load(
    "@build_bazel_rules_swift//swift:extras.bzl",
    "swift_rules_extra_dependencies",
)

swift_rules_extra_dependencies()

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

apple_support_dependencies()