v0.8.0
Using Bzlmod
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "with_cfg.bzl", version = "0.8.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "with_cfg.bzl",
sha256 = "e217adc62da01febd08e1e074e78b307dc10b40a24175c68c1bf49e3f8d0fbab",
strip_prefix = "with_cfg.bzl-0.8.0",
url = "https://github.com/fmeum/with_cfg.bzl/releases/download/v0.8.0/with_cfg.bzl-v0.8.0.tar.gz",
)
What's Changed
- Update dependency bazel_features to v1.22.0 by @renovate in #139
- Test and fix docs for Bazel 8 by @fmeum in #141
- Actually check that transition applies in
cc_define_test
by @fmeum in #144 - Update dependency bazel_features to v1.23.0 by @renovate in #143
- Use
rule(parent = ...)
when possible by @fmeum in #145 - Deduplicate
extra_providers
against built-in providers by @fmeum in #147 - Only forward Python providers by default if available without
load
by @fmeum in #148
Full Changelog: v0.7.0...v0.8.0