3.1.1
Bzlmod Snippet
bazel_dep(name = "rules_ios", version = "3.1.1", repo_name = "build_bazel_rules_ios")
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_ios",
sha256 = "2dbf4d17fc6e454ae3113869a095afa79b1f2182782f999533d17fef5bbdf88b",
url = "https://github.com/bazel-ios/rules_ios/releases/download/3.1.1/rules_ios.3.1.1.tar.gz",
)
load(
"@build_bazel_rules_ios//rules:repositories.bzl",
"rules_ios_dependencies"
)
rules_ios_dependencies()
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_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()
load(
"@com_google_protobuf//:protobuf_deps.bzl",
"protobuf_deps",
)
protobuf_deps()
What's Changed
- Add docs on BCR publishing by @luispadron in #792
- Allow Bazel 6 users to explicitly opt-in to rules_apple 2.x by @thiagohmcruz in #793
- Remove missing
output_discriminator
attribute usage by @mattrobmattrob in #796 - Conditionally handle
--apple_compiler
&--apple_grte_top
by @mattrobmattrob in #798 - Decouple CI & remote cache config by @mattrobmattrob in #799
- Update precompiled_apple_resource_bundle to not include executable_name by @luispadron in #801
Full Changelog: 3.1.0...3.1.1