Skip to content

1.18.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Apr 15:08
· 23 commits to master since this release
ea2d4bd

What's Changed

  • Remove unnecessary uses of ctx.resolve_tools (Thanks, @tjgq!)
  • Update apple_support to 1.15.1 (Thanks, @luispadron!)
  • Update swift_import docs and add warning (Thanks, @luispadron!)
  • Add swift_proto_library_group rule (Thanks, @AttilaTheFun!)

This release is compatible with 6.x LTS, 7.x LTS, and bazel 8.x rolling releases

MODULE.bazel Snippet

bazel_dep(name = "rules_swift", version = "1.18.0", repo_name = "build_bazel_rules_swift")

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_rules_swift",
    sha256 = "bb01097c7c7a1407f8ad49a1a0b1960655cf823c26ad2782d0b7d15b323838e2",
    url = "https://github.com/bazelbuild/rules_swift/releases/download/1.18.0/rules_swift.1.18.0.tar.gz",
)

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

Full Changelog: 1.17.0...1.18.0