Skip to content

3.1.2

Latest

Choose a tag to compare

@github-actions github-actions released this 06 Aug 23:37
· 19 commits to master since this release
3025d8f

What's Changed

  • Merge Swift and Clang entries in .swift-explicit-module-map.json by @ileitch in #1545
  • Pass -file-compilation-dir . explicitly to the Swift driver so that .swiftmodule files are hermetic. by @adincebic in #1554
  • Insert -plugin-path for testing macros location when building tests by @aaronsky in #1555

New Contributors

Full Changelog: 3.1.1...3.1.2

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

MODULE.bazel Snippet

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