Skip to content

v1.19.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Oct 18:58
· 9 commits to main since this release
24b019d

Using Bzlmod with Bazel 6

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

Using WORKSPACE

Paste this snippet into your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_features",
    sha256 = "3646ffd447753490b77d2380fa63f4d55dd9722e565d84dfda01536b48e183da",
    strip_prefix = "bazel_features-1.19.0",
    url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.19.0/bazel_features-v1.19.0.tar.gz",
)
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()

What's Changed

  • Add CcSharedLibraryHintInfo and update version for CcSharedLibraryInfo by @fmeum in #76
  • feat: detect stardoc output change by @alexeagle in #75

Full Changelog: v1.18.0...v1.19.0