Skip to content

1.1.2

Compare
Choose a tag to compare
@thii thii released this 16 Sep 14:07
· 15 commits to bazel/5.x since this release
3466979
  • Add WKWatchKitApp key by default to legacy watchOS 2 application bundles hosting an extension
  • Upgrade apple_support to 1.3.1
  • Upgrade rules_swift to 1.2.0

This release is compatible with 5.x LTS releases.

Please use the release asset from your Bazel WORKSPACE instead of
GitHub's asset to reduce download size and improve reproducibility.

SHA-256 digest: 90e3b5e8ff942be134e64a83499974203ea64797fd620eddeb71b3a8e1bff681

Workspace snippet

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

http_archive(
    name = "build_bazel_rules_apple",
    sha256 = "90e3b5e8ff942be134e64a83499974203ea64797fd620eddeb71b3a8e1bff681",
    url = "https://github.com/bazelbuild/rules_apple/releases/download/1.1.2/rules_apple.1.1.2.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()