0.2.0
Using Bzlmod with Bazel 6
NOTE: bzlmod support is still beta and it is not yet available on BCR. APIs subject to change.
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 = "f6107dbac186b724700165f0c7c4ddbe2be586e73c905c6c524ee658c78b3da3",
url = "https://github.com/aignas/rules_shellcheck/releases/download/0.2.0/rules_shellcheck-0.2.0.tar.gz",
)
load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")
shellcheck_dependencies()
What's Changed
- Reorganize examples to have one to test installation instructions by @aignas in #9
- Add a simple test to ensure that we will propage the failure by @aignas in #12
- bzlmod support by @aignas in #13
- Add
severity
andformat
attributes by @luispadron in #20 - docs: Add missing sha256 for http_archive to README by @vorburger in #18
- Bump shellcheck version to 0.9.0 by @gmishkin in #19
New Contributors
- @luispadron made their first contribution in #20
- @vorburger made their first contribution in #18
- @gmishkin made their first contribution in #19
Full Changelog: v0.1.1...0.2.0