Skip to content

v0.7.0

Choose a tag to compare

@github-actions github-actions released this 13 Mar 14:19
· 3 commits to main since this release
81c0071

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.7.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 = "e17f72732618a6536559b3015dbe190ef592f7b9ba81969ff4bca766c451b3a5",
    strip_prefix = "rules_shell-0.7.0",
    url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.7.0/rules_shell-v0.7.0.tar.gz",
)

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

What's Changed

  • Don't emit a shebang with use_bash_launcher on Windows by @fmeum in #44
  • Add ShInfo and ShBinaryInfo providers by @UebelAndre in #47
  • Migrate from Publish to BCR app to workflow by @fmeum in #50

New Contributors

Full Changelog: v0.6.1...v0.7.0