1.8.0
What's Changed
- Remove support for bitcode now that Xcode 14.1 is the minimum supported version required for uploading to the App Store
- Fix Swift toolchain discovery invalidation on Linux, thanks @gferon!
- Respect
--incompatible_objc_alwayslink_by_default
- Fix incompatibility with
--incompatible_use_host_features
This release is compatible with 5.x LTS, 6.x LTS, and bazel 7.x rolling releasess
MODULE.bazel Snippet
bazel_dep(name = "rules_swift", version = "1.8.0", repo_name = "build_bazel_rules_swift")
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_swift",
sha256 = "b98bd1ec03c713e2ff5c3aa8c05930d8b6ab85cc82b3ae5d869058da4731f230",
url = "https://github.com/bazelbuild/rules_swift/releases/download/1.8.0/rules_swift.1.8.0.tar.gz",
)
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()