v0.31.1 - 2026-02-20
Bug Fixes
- (cc_helper.bzl) reduce copypaste from rules_cc - (5350302) - Aleksander Gondek
Miscellaneous Chores
- (version) v0.31.1 - (5097824) - Github Actions
Usage example
Bzlmod
Paste this snippet into your MODULE.bazel file:
bazel_dep(name = "rules_cc_hdrs_map", version = "v0.31.1")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 = "57ba7a65a62f9d6c0e36d68cb4f2dc04b08882bb4758060a31e37e8d8cb58125",
url = "https://github.com/AleksanderGondek/rules_cc_hdrs_map/releases/download/v0.31.1/rules_cc_hdrs_map-v0.31.1.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
- fix(cc_helper.bzl): reduce copypaste from rules_cc by @AleksanderGondek in #51
Full Changelog: v0.31.0...v0.31.1