Skip to content

2.2.1

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Oct 19:27
· 8 commits to 2.x since this release
5bb185c

What's Changed

  • Fix build_file labels (#1426)
  • Allow existing SwiftInfo arguments until 3.0 (#1419)
  • Warn instead of fail when swiftc not found on Linux (#1433)

Full Changelog: 2.2.0...2.2.1

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

MODULE.bazel Snippet

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