Skip to content

v0.4.1

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jul 15:15
· 12 commits to main since this release
2c93dc2

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.4.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 = "816015be09024487a65b31d476c1874c3e5dec0a8b9e335c3fe813a5fbd9ff27",
    strip_prefix = "with_cfg.bzl-0.4.1",
    url = "https://github.com/fmeum/with_cfg.bzl/releases/download/v0.4.1/with_cfg.bzl-v0.4.1.tar.gz",
)

What's Changed

  • Sync back changes to presubmit.yml by @fmeum in #106
  • Only special case args for *_binary and *_test rules by @fmeum in #110

Full Changelog: v0.4.0...v0.4.1