v0.7.0-rc5
Pre-release
Pre-release
github-actions
released this
16 Sep 15:55
·
15 commits
to main
since this release
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel
file:
bazel_dep(name = "bazeldnf", version = "0.7.0-rc5")
This will register a prebuilt bazeldnf
Using WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazeldnf",
sha256 = "22151c2789fba49a29030618155b207549040ea56c6ec54e322b742b1b265365",
strip_prefix = "bazeldnf-v0.7.0-rc5",
url = "https://github.com/bookingcom/bazeldnf/releases/download/v0.7.0-rc5/bazeldnf-v0.7.0-rc5.tar.gz",
)
load(
"@bazeldnf//bazeldnf:repositories.bzl",
"bazeldnf_dependencies",
)
bazeldnf_dependencies()
Full Changelog: v0.7.0-rc2...v0.7.0-rc5