Skip to content

v0.6.1

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Dec 18:36
· 4 commits to main since this release
5257b0e

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "with_cfg.bzl", version = "0.6.1")

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 = "d83f99ac39cd9940848ea11a51a60159cf09cda2ba30545036041551aae73ab4",
    strip_prefix = "with_cfg.bzl-0.6.1",
    url = "https://github.com/fmeum/with_cfg.bzl/releases/download/v0.6.1/with_cfg.bzl-v0.6.1.tar.gz",
)

What's Changed

  • Update dependency bazel to v7.4.1 by @renovate in #131
  • Update MSVC version by @fmeum in #132
  • Only set exec_properties on the underlying rule by @fmeum in #134
  • Don't flag new releases as prereleases by @fmeum in #135

Full Changelog: v0.6.0...v0.6.1