2.0.0
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_ios",
sha256 = "31350fbb0beac980ec2c5db407ba359b7fc517b845d487df0aad4d815bffa451",
url = "https://github.com/bazel-ios/rules_ios/releases/download/2.0.0/rules_ios.2.0.0.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 repro for XCFramework import issue by @mattrobmattrob in #713
- Remove Carthage and Cocoapod rules by @luispadron in #716
- [Retry] Fix transitive framework import in opt build by @qyang-nj in #718
- Add remote cache and CI configs by @luispadron in #719
- Remove out of date cpp library comment by @mattrobmattrob in #723
- support .inc file for func
_private_headers
by @Su-Xiaofeng in #724 - Refactor _xcodeproj_is_mixed to _target_is_mixed by @AngelaGuardia in #725
- Propagate transitive ObjC and Swift copts by @thiagohmcruz in #726
- Update rules_apple to 2.3.0 + remove bitcode support by @mattrobmattrob in #727
New Contributors
- @Su-Xiaofeng made their first contribution in #724
- @AngelaGuardia made their first contribution in #725
Full Changelog: 1.1.0...2.0.0