Skip to content

v0.8.0-rc2

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 17 Feb 16:16
· 189 commits to main since this release

1501
2257

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "bazeldnf", version = "0.8.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 = "31c5dea91c790619cbac6a680ed1b0a939a4998270e8f83dafb4792b19843048",
    strip_prefix = "bazeldnf-v0.8.0-rc2",
    url = "https://github.com/bookingcom/bazeldnf/releases/download/v0.8.0-rc2/bazeldnf-v0.8.0-rc2.tar.gz",
)

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

bazeldnf_dependencies()

Full Changelog: v0.8.0-rc1...v0.8.0-rc2