Skip to content

2.5.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 06 Feb 22:50
· 1 commit to 2.x since this release
eb496d6

What's Changed

  • Mark non_module_deps extension as reproducible (#1481)
  • Print a warning, instead of an error, when not finding swiftc.exe (#1483)
  • Fix typo in _check_supports_language_mode_6 (#1484)
  • Remove swift_toolchain_attrs usage (#1485)
  • Remove another swift_toolchain_attrs usage (#1486)

Full Changelog: 2.4.0...2.5.0

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

MODULE.bazel Snippet

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