Skip to content

v0.4.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Dec 00:57
· 760 commits to main since this release
87cecb5

WORKSPACE snippet:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "c3d259bf275a8666b38f9aa796eb8200310e7294d77aa690ef5ba516da50250a",
    strip_prefix = "bazel-lib-0.4.1",
    url = "https://github.com/aspect-build/bazel-lib/archive/v0.4.1.tar.gz",
)

load("@aspect_bazel_lib//lib:repositories", "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

  • docs: add jq usage examples by @kormide in #16
  • feat: add include_external_repositories and exclude_prefixes attributes to copy_to_directory by @gregmagolan in #17
  • fix: allow tags/visibility on jq rule by @alexeagle in #19

Full Changelog: v0.4.0...v0.4.1