Skip to content

v1.27.0

Compare
Choose a tag to compare
@github-actions github-actions released this 27 Mar 16:02
· 10 commits to main since this release
52fcc41

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.27.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 = "2da0aaccbd725ad61f4e35d6d75ed421bf73ec1de167458b00ffecef3cd78f6d",
    strip_prefix = "bazel_features-1.27.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.27.0/bazel_features-v1.27.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Add flag for Xcode config migration in Bazel 8+ by @luispadron in #96

New Contributors

Full Changelog: v1.26.0...v1.27.0