|
| 1 | +## What’s Changed |
| 2 | + |
| 3 | +### Since %LAST_TAG% |
| 4 | + |
| 5 | +* TBD |
| 6 | + |
| 7 | +**Below are the changes that were in %LAST_TAG%.** |
| 8 | + |
| 9 | +### ⚠️ Breaking changes ⚠️ |
| 10 | + |
| 11 | +* TBD |
| 12 | + |
| 13 | +### New |
| 14 | + |
| 15 | +* TBD |
| 16 | + |
| 17 | +### Adjusted |
| 18 | + |
| 19 | +* TBD |
| 20 | + |
| 21 | +### Fixed |
| 22 | + |
| 23 | +* TBD |
| 24 | + |
| 25 | +### Ruleset Development Changes |
| 26 | + |
| 27 | +* TBD |
| 28 | + |
| 29 | +### Full Changelog |
| 30 | + |
| 31 | +https://github.com/buildbuddy-io/rules_xcodeproj/compare/%LAST_MINOR_TAG%...%CURRENT_TAG% |
| 32 | + |
| 33 | +## Contributors |
| 34 | + |
| 35 | +* TBD |
| 36 | + |
| 37 | +## Bzlmod Snippet |
| 38 | + |
| 39 | +```starlark |
| 40 | +bazel_dep(name = "rules_xcodeproj", version = "%CURRENT_TAG%") |
| 41 | +``` |
| 42 | + |
| 43 | +`release.tar.gz`’s `integrity`: `%INTEGRITY%` |
| 44 | + |
| 45 | +## Workspace Snippet |
| 46 | + |
| 47 | +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. |
| 48 | + |
| 49 | +```starlark |
| 50 | +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| 51 | + |
| 52 | +http_archive( |
| 53 | + name = "rules_xcodeproj", |
| 54 | + integrity = "%INTEGRITY%", |
| 55 | + url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/%CURRENT_TAG%/release.tar.gz", |
| 56 | +) |
| 57 | + |
| 58 | +load( |
| 59 | + "@rules_xcodeproj//xcodeproj:repositories.bzl", |
| 60 | + "xcodeproj_rules_dependencies", |
| 61 | +) |
| 62 | + |
| 63 | +xcodeproj_rules_dependencies() |
| 64 | + |
| 65 | +load("@bazel_features//:deps.bzl", "bazel_features_deps") |
| 66 | + |
| 67 | +bazel_features_deps() |
| 68 | + |
| 69 | +load( |
| 70 | + "@build_bazel_rules_apple//apple:repositories.bzl", |
| 71 | + "apple_rules_dependencies", |
| 72 | +) |
| 73 | + |
| 74 | +apple_rules_dependencies() |
| 75 | + |
| 76 | +load( |
| 77 | + "@build_bazel_rules_swift//swift:repositories.bzl", |
| 78 | + "swift_rules_dependencies", |
| 79 | +) |
| 80 | + |
| 81 | +swift_rules_dependencies() |
| 82 | + |
| 83 | +load( |
| 84 | + "@build_bazel_rules_swift//swift:extras.bzl", |
| 85 | + "swift_rules_extra_dependencies", |
| 86 | +) |
| 87 | + |
| 88 | +swift_rules_extra_dependencies() |
| 89 | + |
| 90 | +load( |
| 91 | + "@build_bazel_apple_support//lib:repositories.bzl", |
| 92 | + "apple_support_dependencies", |
| 93 | +) |
| 94 | + |
| 95 | +apple_support_dependencies() |
| 96 | +``` |
0 commit comments