Skip to content

v0.31.0

Choose a tag to compare

@github-actions github-actions released this 19 Feb 17:58
· 2 commits to master since this release

v0.31.0 - 2026-02-19

Features

  • (cc_helper.bzl) expose it and valid extensions - (9509456) - Aleksander Gondek

Miscellaneous Chores

  • (version) v0.31.0 - (c35231d) - Github Actions

Usage example

Bzlmod

Paste this snippet into your MODULE.bazel file:

bazel_dep(name = "rules_cc_hdrs_map", version = "v0.31.0")

WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_cc_hdrs_map",
    sha256 = "55396cc37a32f3eeb42ca39de6c2c1701d129ee61a57587977d6ca36ebf36fd4",
    url = "https://github.com/AleksanderGondek/rules_cc_hdrs_map/releases/download/v0.31.0/rules_cc_hdrs_map-v0.31.0.tar.gz",
)

load("@rules_cc_hdrs_map//cc_hdrs_map:workspace_deps.bzl", "cc_hdrs_map_workspace_deps")
cc_hdrs_map_workspace_deps()

load("@rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
compatibility_proxy_repo()

What's Changed

Full Changelog: v0.30.0...v0.31.0