Skip to content

2.8.1

Latest
Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 29 Oct 18:37
· 3 commits to main since this release
2.8.1
c8422cb

What’s Changed

Since 2.8.0

  • Fixed missing BUILD files in Project navigator: #3102

Below are the changes that were in 2.8.0.

New

  • Added thread checkers to xcscheme.diagnostics: #3096

Adjusted

  • Structured resources are now represented as files instead of folders in Xcode: #3098 and #3100

Fixed

  • Fixed "Generate Bazel Dependencies" target name typo Fix typo: #3091
  • Fixed handling of apple_precompiled_resource_bundle and similar rules: #3097 and #3099

Full Changelog

2.7.0...2.8.1

Contributors

Bzlmod Snippet

bazel_dep(name = "rules_xcodeproj", version = "2.8.1")

release.tar.gz’s integrity: sha256-I3EVPca7ANRry6ozx41PVIikPUc3TUlYe408gKIuuRQ=

Workspace Snippet

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

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

http_archive(
    name = "rules_xcodeproj",
    integrity = "sha256-I3EVPca7ANRry6ozx41PVIikPUc3TUlYe408gKIuuRQ=",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/2.8.1/release.tar.gz",
)

load(
    "@rules_xcodeproj//xcodeproj:repositories.bzl",
    "xcodeproj_rules_dependencies",
)

xcodeproj_rules_dependencies()

load("@bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()

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()