Skip to content

1.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Feb 18:12
· 214 commits to master since this release
f174ab8

What's Changed

  • Fixed sanitizers on Linux (#975)
  • Adds -enable-bare-slash-regex on Linux if supported (#971)
  • Added workaround for Swift + lld bug (#978)
  • Enabled swift.coverage_prefix_map by default (#1002)
  • Added --test_filter support (#999)
  • Fixed swift.use_global_index_store when using swift.file_prefix_map (#1001)
  • Upgraded apple_support to 1.4.1 (#1010)
  • Enabled -debug-prefix-map by default on Linux (#1011)
  • Enabled swift.remap_xcode_path default (#1012)
  • Enabled swift.use_response_files by default on Linux (#1013)
  • Enabled swift.file_prefix_map by default if supported (#1014)

This release is compatible with 5.x LTS and bazel 6.x rolling releases.

MODULE.bazel Snippet

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