Skip to content

3.5.0

Latest

Choose a tag to compare

@github-actions github-actions released this 05 Mar 16:00
d23fdf0

What's Changed

Full Changelog: 3.4.2...3.5.0

This release is compatible with Bazel 7.x LTS, 8.x LTS, and 9.x LTS.

MODULE.bazel Snippet

bazel_dep(name = "rules_swift", version = "3.5.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 = "c98f201bc217d2ce28e01afc78b410d05c67b846c04a7095e4e701b37422ecb2",
    url = "https://github.com/bazelbuild/rules_swift/releases/download/3.5.0/rules_swift.3.5.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()