0.3.0
Using Bzlmod with Bazel 6
NOTE: bzlmod support is still beta. APIs subject to change.
Add to your MODULE.bazel
file:
bazel_dep(name = "rules_shellcheck", version = "0.3.0")
Legacy: using WORKSPACE
Paste this snippet into your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_shellcheck",
sha256 = "cf136af1fa00a4bd01457f9373f7b28e2019b414c500c8e838231870a23893b7",
url = "https://github.com/aignas/rules_shellcheck/releases/download/0.3.0/rules_shellcheck-0.3.0.tar.gz",
)
load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")
shellcheck_dependencies()
What's Changed
- ci: consolidate CI workflows and package with bazel by @aignas in #29
- Use vscode-shellcheck/shellcheck-binaries (which gives us Apple Silicon, Windows, And Rasberry Pi support) by @stefanpenner in #30
- CI: various cleanups around examples and CI by @aignas in #33
- chore: group dependabot updates by @aignas in #34
- fix(packaging): include missing .bzl files into the tar distribution by @aignas in #36
- build(deps): bump the github-actions group with 2 updates by @dependabot in #35
New Contributors
- @stefanpenner made their first contribution in #30
Full Changelog: 0.2.4...0.3.0