Skip to content

v0.8.0

Latest

Choose a tag to compare

@github-actions github-actions released this 16 Apr 22:08
e7abea6

Using MODULE.bazel:

bazel_dep(name = "rules_fuzzing", version = "0.8.0")

Using WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_fuzzing",
    sha256 = "2cc83f91e3048d275f3ebc8b627ebca5c0fc401b3f093a4de398b11ec3e21137",
    strip_prefix = "rules_fuzzing-v0.8.0",
    url = "https://github.com/bazelbuild/rules_fuzzing/releases/download/v0.8.0/rules_fuzzing-v0.8.0.tar.gz",
)

load("@rules_fuzzing//fuzzing:repositories.bzl", "rules_fuzzing_dependencies")

rules_fuzzing_dependencies()

load("@rules_fuzzing//fuzzing:init.bzl", "rules_fuzzing_init")

rules_fuzzing_init()

load("@fuzzing_py_deps//:requirements.bzl", "install_deps")

install_deps()

What's Changed

  • Update Bazel to 9.0.1 by @fmeum in #287
  • Update deps and bump Python versions by @fmeum in #286
  • Support for using honggfuzz with gcc by @fmeum in #288

Full Changelog: v0.7.0...v0.8.0