Skip to content

v0.6.0

Choose a tag to compare

@github-actions github-actions released this 20 Aug 10:57
· 7 commits to main since this release
94c1e66

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_shell", version = "0.6.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_shell",
    sha256 = "fce2a7a974aa70e9367068122e19c39a6a27a5aca30698bcf9030beb529612b6",
    strip_prefix = "rules_shell-0.6.0",
    url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.6.0/rules_shell-v0.6.0.tar.gz",
)

load("@rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")
rules_shell_dependencies()
rules_shell_toolchains()

What's Changed

  • Update runfiles library label in setup instructions by @fmeum in #35
  • Use launcher wrapper to initialize runfiles by @mering in #38

New Contributors

Full Changelog: v0.5.1...v0.6.0