Skip to content

v0.8.0-rc3

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 18 Feb 10:40
· 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-rc3")

This will register a prebuilt bazeldnf

Using WORKSPACE

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

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

bazeldnf_dependencies()

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