0.5.1
bzlmod
Add to your MODULE.bazel file:
bazel_dep(name = "rules_shellcheck", version = "0.5.1")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 = "92c302c8426e8463459d7d5aa60278ff04e45f0586f390bc6a6862fb7a881b4f",
url = "https://github.com/aignas/rules_shellcheck/releases/download/0.5.1/rules_shellcheck-0.5.1.tar.gz",
)
load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")
shellcheck_dependencies()What's Changed
- Added
shellcheck_aspectby @UebelAndre in #46 - build(deps): bump the github-actions group with 3 updates by @dependabot[bot] in #45
- Fix pkg workflow by @UebelAndre in #47
- build(deps): bump the github-actions group with 3 updates by @dependabot[bot] in #49
- Add
shellcheck_toolchainrule by @UebelAndre in #48 - chore: prepare for 0.5 release by @aignas in #52
New Contributors
- @UebelAndre made their first contribution in #46
Full Changelog: 0.4.0...0.5.1