Skip to content

v0.8.0-rc5

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 18 Feb 12:28
· 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-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 = "6e7ae88ad1c5c50567efed7fcac5710d2550634fd6d35851ded962ae38291989",
    strip_prefix = "bazeldnf-v0.8.0-rc5",
    url = "https://github.com/bookingcom/bazeldnf/releases/download/v0.8.0-rc5/bazeldnf-v0.8.0-rc5.tar.gz",
)

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

bazeldnf_dependencies()

Full Changelog: v0.8.0-rc4...v0.8.0-rc5