v0.7.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
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_launcheron Windows by @fmeum in #44 - Add
ShInfoandShBinaryInfoproviders by @UebelAndre in #47 - Migrate from Publish to BCR app to workflow by @fmeum in #50
New Contributors
- @UebelAndre made their first contribution in #47
Full Changelog: v0.6.1...v0.7.0