Skip to content

v1.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Mar 10:22
· 6 commits to main since this release
4b4f65e

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.8.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 = "70d355d5e34c3fe453f5556d6c0f02ffed0eb2c7ce4c8ee016d94d654bc6a014",
    strip_prefix = "bazel_features-1.8.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.8.0/bazel_features-v1.8.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Add rules.expand_template_has_computed_substitutions by @fmeum in #46
  • Use maybe in bazel_features_repo macro by @fmeum in #47

Full Changelog: v1.7.0...v1.8.0