Skip to content

v0.10.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Apr 20:36
· 670 commits to main since this release
04c0f95

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "f8afbf8592a79ad80af485489a78887e578d29735edaff6d4af3983337da60b0",
    strip_prefix = "bazel-lib-0.10.0",
    url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v0.10.0.tar.gz",
)

load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

aspect_bazel_lib_dependencies()

Optional toolchains:

# Register the following toolchain to use jq

load("@aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")

register_jq_toolchains(version = "1.6")

# Register the following toolchain to use yq

load("@aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains")

register_yq_toolchains(version = "4.24.5")

What's Changed

  • feat: rename @yq_host and @jq_host to @yq and @jq respectively and export bin() function in index.bzl to get bin label for host platform by @gregmagolan in #87

Full Changelog: v0.9.8...v0.10.0