v0.6.0
Using Bzlmod
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "with_cfg.bzl", version = "0.6.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 = "81a8714ad1542ce6bd69c8e32bf3c4123f137854e6b676d099d8a709348eee56",
strip_prefix = "with_cfg.bzl-0.6.0",
url = "https://github.com/fmeum/with_cfg.bzl/releases/download/v0.6.0/with_cfg.bzl-v0.6.0.tar.gz",
)
What's Changed
- Update MSVC version by @fmeum in #120
- Update dependency bazel to v7.3.2 by @renovate in #124
- Test against
latest
instead oflast_rc
by @fmeum in #128 - Update dependency bazel to v7.4.0 by @renovate in #127
- Remove
apple_common
providers from default provider set by @fmeum in #130 - Update bazel-contrib/.github action to v7 by @renovate in #126
Full Changelog: v0.5.0...v0.6.0