Skip to content

v1.33.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jul 17:02
· 1 commit to main since this release
5d3fd91

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "bazel_features", version = "1.33.0")

Using WORKSPACE

Paste this snippet into your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_features",
    sha256 = "c41853e3b636c533b86bf5ab4658064e6cc9db0a3bce52cbff0629e094344ca9",
    strip_prefix = "bazel_features-1.33.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.33.0/bazel_features-v1.33.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Update version range for has_launcher_maker_toolchain by @fmeum in #104
  • Add instrumented_files_info_has_baseline_coverage_files by @fmeum in #105
  • Add cc_toolchain_has_generate_modmap by @fmeum in #109

Full Changelog: v1.32.0...v1.33.0