Skip to content

4.0.1

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jun 13:46
· 23 commits to master since this release
3453bc0

What's Changed

Fixed

  • Fix TEST_PREMATURE_EXIT_FILE not being removed in macos_test_runner by @brentleyjones in #2735

Full Changelog: 4.0.0...4.0.1

This release is compatible with Bazel 7.x LTS and 8.x LTS releases

MODULE.bazel Snippet

bazel_dep(name = "rules_apple", version = "4.0.1", repo_name = "build_bazel_rules_apple")

Workspace Snippet

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

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