Skip to content

2.3.1

Latest
Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 09 May 18:17
· 4 commits to main since this release
2.3.1
7683fae

What’s Changed

Since 2.3.0

  • Fixed build when IDEBuildingContinueBuildingAfterErrors has never been set #3024

Below are the changes that were in 2.3.0.

New

  • The "Continue building after errors" setting in Xcode is now respected: #3020

Adjusted

  • Only declared input headers are now included in the project navigator: #3015, #3016, and #3017

Fixed

  • Fixed associated_extra_files when multiple targets own the same file: #3023

Full Changelog

2.2.0...2.3.1

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-O+vLV3DoUxJsP7rLBlJA41VU4JsxpYSq9ItmTlgf3Qg=

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