Skip to content

v0.7.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 31 Mar 23:55
· 744 commits to main since this release
096133e

WORKSPACE snippet:

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

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

  • test - add bash script tests to CI by @jbedard in #54
  • fix(write_source_files): fix writing to workspace root by @jbedard in #53
  • test(write_source_files): ensure generated git-ignored files are created by @jbedard in #56
  • feat: platform_transition_filegroup by @alexeagle in #55

New Contributors

Full Changelog: v0.6.2...v0.7.0