Skip to content

v0.2.5

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Jun 08:13
· 18 commits to main since this release
cb40258

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.2.5")

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

What's Changed

  • Sort loads with new buildifier version by @fmeum in #81
  • Update dependency platforms to v0.0.10 by @renovate in #84
  • Update dependency bazel to v7.1.2 by @renovate in #86
  • add example of running same Java test suite on multiple JDK versions by @mattnworb in #89
  • Update MSVC version in CI by @fmeum in #92
  • Update dependency bazel to v7.2.0 by @renovate in #93
  • Simplify CI setup and use prebuilt protoc by @fmeum in #90
  • Update dependency contrib_rules_jvm to v0.27.0 by @renovate in #91
  • Add support for go_test by @fmeum in #97

New Contributors

Full Changelog: v0.2.4...v0.2.5