Skip to content

v0.11.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 09 May 10:57
· 6 commits to main since this release
74c1f5b

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_jni", version = "0.11.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_jni",
    sha256 = "181363c9d7aefd33e8b4e1f24f75c29665551298e5634e8c801e624fa8b0ca18",
    strip_prefix = "rules_jni-0.11.0",
    url = "https://github.com/fmeum/rules_jni/releases/download/v0.11.0/rules_jni-v0.11.0.tar.gz",
)

What's Changed

Full Changelog: v0.10.3...v0.11.0