Skip to content

1.0.0rc2

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 01 Feb 15:58
· 1133 commits to main since this release
1.0.0rc2
097e825

What’s Changed

  • dSYMs are now copied into Derived Data in BwB mode: #1626
  • Non-source *_library targets no longer generate Xcode targets (again): #1713
  • Target merging restrictions now apply for non-Swift targets as well: #1717
  • Fixed breakpoints when ~/.lldbinit-Xcode exists: #1720
  • Fixed BwX handling of --apple_generate_dsym: #1714

Full Changelog: 1.0.0rc1...1.0.0rc2

See the 1.0.0rc1 release notes for more details of what is in the 1.0.0rc release.

Contributors

First PRs

Bzlmod Snippet

bazel_dep(name = "rules_xcodeproj", version = "1.0.0rc2", repo_name = "com_github_buildbuddy_io_rules_xcodeproj")

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

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 = "com_github_buildbuddy_io_rules_xcodeproj",
    sha256 = "9a39f62430765347b15ec6a64061f9a4f33de9e0dc7df3178dcf5aafb3316303",
    url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/1.0.0rc2/release.tar.gz",
)

load(
    "@com_github_buildbuddy_io_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()