Skip to content

v0.7.0-rc2

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 09 Sep 13:10
· 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-rc2")

This will register a prebuilt bazeldnf

Using WORKSPACE

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

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

bazeldnf_dependencies()

Full Changelog: v0.6.0-rc16...v0.7.0-rc2