Skip to content

v1.48.0

Choose a tag to compare

@github-actions github-actions released this 06 Jun 09:03
· 5 commits to main since this release
8d31933

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.48.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 = "ebb168e7779d14ee565ef3b706b259076393d4aedeb20f13f9af03029d7326ec",
    strip_prefix = "bazel_features-1.48.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.48.0/bazel_features-v1.48.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Add feature for refines_constraint_value by @fmeum in #145

Full Changelog: v1.47.1...v1.48.0