Skip to content

2.6.1: Co-located generated files

Compare
Choose a tag to compare
@brentleyjones brentleyjones released this 13 Aug 16:27
· 14 commits to main since this release
2.6.1
076bf1f

What’s Changed

Since 2.6.1

  • Fixed unfocused top-level targets: #3072

Below are the changes that were in 2.6.0.

New

  • Added support for rules_swift’s mixed_language_library: #3063 and #3069

Adjusted

  • Generated files are now co-located with package source files: #3049 and #3071
  • Headers are now included in --remote_download_regex: #3061 and #3062

Full Changelog

2.5.2...2.6.1

Contributors

Bzlmod Snippet

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

release.tar.gz’s integrity: sha256-eWX4D5buhP8Xjr3dIgGZZCWS1QWM9f+SqZ9elTi9KsU=

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",
    integrity = "sha256-eWX4D5buhP8Xjr3dIgGZZCWS1QWM9f+SqZ9elTi9KsU=",
    url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/2.6.1/release.tar.gz",
)

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

xcodeproj_rules_dependencies()

load("@bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()

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