v0.4.0
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "a28dbee79b1382a170d4b93ba676a9e31cea48f1985dbdd4ee500211d2a005e9",
strip_prefix = "bazel-lib-0.4.0",
url = "https://github.com/aspect-build/bazel-lib/archive/v0.4.0.tar.gz",
)
load("@aspect_bazel_lib", "aspect_bazel_lib_dependencies")
aspect_bazel_lib_dependencies()
# Optional: register the following toolchain to use jq
load("@aspect_bazel_lib", "register_jq_toolchains")
register_jq_toolchains(version = "1.6")
What's Changed
- fix: release archive needs a strip_prefix by @alexeagle in #14
- Add jq toolchain and rule by @kormide in #11
- docs: update workspace snippet with jq instructions by @kormide in #15
New Contributors
Full Changelog: v0.3.0...v0.4.0