Skip to content

v0.8.0-rc7

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 28 Mar 15:50
· 121 commits to main since this release

1402
2410

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "bazeldnf", version = "0.8.0-rc7")

This will register a prebuilt bazeldnf

Using WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazeldnf",
    sha256 = "638c15cd0732bff116f852d93ea5e43ead0f5abb96f88c893d0448d00a802657",
    strip_prefix = "bazeldnf-v0.8.0-rc7",
    url = "https://github.com/bookingcom/bazeldnf/releases/download/v0.8.0-rc7/bazeldnf-v0.8.0-rc7.tar.gz",
)

load(
    "@bazeldnf//bazeldnf:repositories.bzl",
    "bazeldnf_dependencies",
)

bazeldnf_dependencies()

Full Changelog: v0.8.0-rc6...v0.8.0-rc7