Skip to content

v0.2.3

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 19 Aug 02:04
· 5 commits to main since this release
775ba0c

WORKSPACE code

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_cuda",
    sha256 = "c92b334d769a07cd991b7675b2f6076b8b95cd3b28b14268a2f379f8baae58e0",
    strip_prefix = "rules_cuda-v0.2.3",
    urls = ["https://github.com/bazel-contrib/rules_cuda/releases/download/v0.2.3/rules_cuda-v0.2.3.tar.gz"],
)

load("@rules_cuda//cuda:repositories.bzl", "register_detected_cuda_toolchains", "rules_cuda_dependencies")
rules_cuda_dependencies()
register_detected_cuda_toolchains()

What's Changed

  • Make it clear that "integrity" field expects SRI by @zifeitong in #259
  • Fix strip_prefix when publishing to BCR by @jsharpe in #269

New Contributors

Full Changelog: v0.2.2...v0.2.3