github MobileNativeFoundation/rules_xcodeproj 0.11.0
0.11.0: Preparing the road to 1.0

latest releases: 3.1.2, 3.1.1, 3.1.0...
2 years ago

What’s Changed

⚠️ Breaking Changes ⚠️

  • Team ID is now always required when using xcode_provisioning_profile: #1397
  • Remove deprecated device_and_simulator rule: #1391

New

  • Added xcodeproj.xcode_minimum_version: #1463, #1464, and #1465
  • Added a --collect_specs command-line option: #1498

Fixes and Improvements

Full Changelog: 0.10.2...0.11.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 = "2533b977ac8540a30323fde7fdb6ca49219edd21d3753b69d43f39c576b11a88",
    url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/0.11.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()

Don't miss a new rules_xcodeproj release

NewReleases is sending notifications on new releases.