Skip to content

2.8.0

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 28 Oct 20:14
· 16 commits to main since this release
2.8.0
caae410

What’s Changed

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.0

Contributors

Bzlmod Snippet

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

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

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-HqJUyMPmiyhI12pk46r4lEi0fdPxsTmGHPMqU9lS12w=",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/2.8.0/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()