Skip to content

0.6.0: Embedded Targets

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 13 Jul 15:31
· 1978 commits to main since this release
0.6.0
957a336

What’s Changed

New

Fixes and Improvements

  • Various fixes for unmerged top-level targets: #669, #673, #674, #725, #726
  • Improved linker flag handling: #670
  • Removed invalid target merges warning: #671
  • Fixed formatting of some build settings: #717 and #719
  • Fixed handling of $location()/$rootpath() in copts: #722
  • Fixed handling of apple_resource_bundle in deps: #734

Full Changelog: 0.5.1...0.6.0

Contributors

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 = "0d53b6154c1296e5ac7885978b3b6430dcb88648c324e934f639e1f955184f41",
    url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/0.6.0/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()