Skip to content

1.4.0

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 12 Apr 20:09
· 888 commits to main since this release
1.4.0
afceb6b

What’s Changed

New

Adjusted

Fixed

  • Fixed Xcode 14.3 support: #1937 and #1981
  • Generating multiple targets in the same workspace now works correctly: #1992, #2000, and #2012
  • Fixed some focused targets issues: #1923, #1930, #1983, #1994, #1995, and #1997
  • Fixed handling of bzlmod external targets: #1926
  • Fixed handling of --force_pic: #1939
  • Fixed CC optimization level flag calculations: #2017
  • Fixed command-line API to work with the dump and shutdown commands: #2019
  • Fixed specs collection: #1966
  • Fixed BwB test action env variables for custom schemes without launch actions: #1955
  • Fixed BwX swift_debug_settings.py generation: #1971

Full Changelog

1.3.3...1.4.0

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-UP5yA3vVEW4vpTnIo3T//hIEmbylKflRWcmtTyaFWw8=

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 = "50fe72037bd5116e2fa539c8a374fffe120499bca529f95159c9ad4f26855b0f",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/1.4.0/release.tar.gz",
)

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

xcodeproj_rules_dependencies()

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