Skip to content

1.4.0

Choose a tag to compare

@github-actions github-actions released this 02 Dec 00:56
7d8769a

What's Changed

  • Fix incremental compilation when generated header is nested in a directory, thanks @brentleyjones!
  • Add -disable-autolink-framework for static frameworks to avoid invalid LC_LINKER_OPTIONs with newer bazel / rules_apple versions

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 = "c244e9f804a48c27fe490150c762d8b0c868b23ef93dc4e3f93d8117ca216d92",
    url = "https://github.com/bazelbuild/rules_swift/releases/download/1.4.0/rules_swift.1.4.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()