Skip to content

1.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Dec 14:55
· 270 commits to master since this release
cb64a41

What's Changed

  • Enable swift.cacheable_swiftmodules by default (#957)
  • Enable swift.use_global_module_cache by default (#956)
  • Update skylib (#954)
  • Add support for automatically pushing bzlmod updates to the Bazel Central Registry (#948)

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

Workspace Snippet

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_rules_swift",
    sha256 = "32f95dbe6a88eb298aaa790f05065434f32a662c65ec0a6aabdaf6881e4f169f",
    url = "https://github.com/bazelbuild/rules_swift/releases/download/1.5.0/rules_swift.1.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()