Skip to content

v1.24.0

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Jan 20:57
· 2 commits to main since this release
ae5ab5c

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.24.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 = "ce32a02849c861e6e3e4d40fcc875f979b7c489e92a426831d4588290fa16068",
    strip_prefix = "bazel_features-1.24.0",
    url = "/~https://github.com/bazel-contrib/bazel_features/releases/download/v1.24.0/bazel_features-v1.24.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Add a feature for cc_* extension support by @fmeum in #91
  • Update buildifier hook and apply its fixes by @fmeum in #90

Full Changelog: v1.23.0...v1.24.0