Skip to content

v0.9.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 12 Apr 01:28
· 687 commits to main since this release

WORKSPACE snippet:

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

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

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

aspect_bazel_lib_dependencies()

# Optional: register the following toolchain to use jq

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

register_jq_toolchains(version = "1.6")

What's Changed

  • feat: add repo_utils with fork of @bazel_tools patch function that takes a working_directory argument by @gregmagolan in #66

Full Changelog: v0.8.3...v0.9.0