Skip to content

v0.12.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@alexeagle alexeagle released this 26 May 05:02
· 682 commits to main since this release
9a1edce

WORKSPACE snippet:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "d1d712d115b908eaaa22aa899fa0e9016d70347debdafe295059e79adda93b02",
    strip_prefix = "bazel-lib-0.12.0",
    url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v0.12.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

  • fix: add mandatory provider for write_source_files additional_update_targets by @kormide in #115
  • fix: fix a bug where copy_to_directory wouldn't copy hidden files inside of folders by @kormide in #117
  • chore: improve the readme by @kormide in #118
  • fix: fix typo in README by @kormide in #119
  • fix: set correct suggested_update_target for write_source_files macros with multiple files by @gregmagolan in #120

Full Changelog: v0.11.10...v0.12.0