Skip to content

Commit d339a58

Browse files
Bump to 0.14.0 (#2692)
1 parent 8d81e34 commit d339a58

File tree

93 files changed

+114
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+114
-114
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ exclude = [
4949
]
5050

5151
[workspace.package]
52-
version = "0.13.2"
52+
version = "0.14.0"
5353
license = "MIT OR Apache-2.0"
5454

5555
[workspace.dependencies]

bindings/pylibafl/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pylibafl"
33
description = "Python bindings for LibAFL"
4-
version = "0.13.2"
4+
version = "0.14.0"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/AFLplusplus/LibAFL/"
77
keywords = ["fuzzing", "testing", "security", "python"]
@@ -11,15 +11,15 @@ categories = ["development-tools::testing", "emulators", "embedded", "os"]
1111
[dependencies]
1212
pyo3 = { version = "0.22.3", features = ["extension-module"] }
1313
pyo3-log = { version = "0.11.0" }
14-
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.2", features = [
14+
libafl_sugar = { path = "../../libafl_sugar", version = "0.14.0", features = [
1515
"python",
1616
] }
17-
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", features = [
17+
libafl_bolts = { path = "../../libafl_bolts", version = "0.14.0", features = [
1818
"python",
1919
] }
2020

2121
[target.'cfg(target_os = "linux")'.dependencies]
22-
libafl_qemu = { path = "../../libafl_qemu", version = "0.13.2", features = [
22+
libafl_qemu = { path = "../../libafl_qemu", version = "0.14.0", features = [
2323
"python",
2424
] }
2525

bindings/pylibafl/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "PyLibAFL"
7-
version = "0.13.2"
7+
version = "0.14.0"
88
description = "Advanced Fuzzing Library for Python"
99
readme = "README.md"
1010
requires-python = ">=3.8"

docs/listings/baby_fuzzer/listing-01/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_listing_01"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Your Name <[email protected]>"]
55
edition = "2018"
66

docs/listings/baby_fuzzer/listing-02/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_listing_02"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Your Name <[email protected]>"]
55
edition = "2018"
66

docs/listings/baby_fuzzer/listing-03/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_listing_03"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Your Name <[email protected]>"]
55
edition = "2018"
66

docs/listings/baby_fuzzer/listing-04/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_listing_04"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Your Name <[email protected]>"]
55
edition = "2018"
66

docs/listings/baby_fuzzer/listing-05/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_listing_05"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Your Name <[email protected]>"]
55
edition = "2018"
66

docs/listings/baby_fuzzer/listing-06/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_listing_06"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Your Name <[email protected]>"]
55
edition = "2018"
66

fuzzers/baby/baby_fuzzer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/baby/baby_fuzzer_custom_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzer_custom_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/baby/baby_fuzzer_minimizing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_minimizing"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/baby/baby_fuzzer_swap_differential/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_swap_differential"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Addison Crump <[email protected]>"]
55
edition = "2021"
66
default-run = "fuzzer_sd"

fuzzers/baby/baby_fuzzer_unicode/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_unicode"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/baby/backtrace_baby_fuzzers/c_code_with_fork_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c_code_with_fork_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[features]

fuzzers/baby/backtrace_baby_fuzzers/c_code_with_inprocess_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c_code_with_inprocess_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[features]

fuzzers/baby/backtrace_baby_fuzzers/command_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "command_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[features]

fuzzers/baby/backtrace_baby_fuzzers/forkserver_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forkserver_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66

fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_fork_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust_code_with_fork_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[features]

fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_inprocess_executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust_code_with_inprocess_executor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[features]

fuzzers/baby/tutorial/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tutorial"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/frida_executable_libpng/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frida_executable_fuzzer"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[lib]

fuzzers/binary_only/frida_libpng/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frida_fuzzer"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/frida_windows_gdiplus/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frida_windows_gdiplus"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Richard Johnson <[email protected]>"]
55
edition = "2021"
66

fuzzers/binary_only/fuzzbench_fork_qemu/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzbench_fork_qemu"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/fuzzbench_qemu/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzbench_qemu"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",
@@ -29,7 +29,7 @@ libafl_qemu = { path = "../../../libafl_qemu", features = [
2929
"x86_64",
3030
"usermode",
3131
] }
32-
libafl_targets = { path = "../../../libafl_targets", version = "0.13.2" }
32+
libafl_targets = { path = "../../../libafl_targets", version = "0.14.0" }
3333

3434
env_logger = "0.11.5"
3535
log = { version = "0.4.22", features = ["release_max_level_info"] }

fuzzers/binary_only/intel_pt_baby_fuzzer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "intel_pt_baby_fuzzer"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/qemu_cmin/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qemu_cmin"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/qemu_coverage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qemu_coverage"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/qemu_launcher/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qemu_launcher"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/binary_only/tinyinst_simple/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tinyinst_simple"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55

66
[dependencies]

fuzzers/forkserver/baby_fuzzer_with_forkexecutor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_with_forkexecutor"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/forkserver/forkserver_libafl_cc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forkserver_libafl_cc"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["ergrelet <[email protected]>"]
55
edition = "2021"
66

fuzzers/forkserver/forkserver_simple/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forkserver_simple"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["tokatoka <[email protected]>"]
55
edition = "2021"
66

fuzzers/forkserver/fuzzbench_forkserver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzbench_forkserver"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/forkserver/fuzzbench_forkserver_cmplog/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzbench_forkserver_cmplog"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/forkserver/libafl-fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl-fuzz"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
description = "Reimplementation of afl-fuzz on top of LibAFL"
55
documentation = "https://docs.rs/libafl"
66
authors = ["Aarnav Bos <[email protected]>"]

fuzzers/full_system/nyx_libxml2_parallel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nyx_libxml2_parallel"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55
default-run = "nyx_libxml2_parallel"
66

fuzzers/full_system/nyx_libxml2_standalone/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nyx_libxml2_standalone"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
edition = "2021"
55
default-run = "nyx_libxml2_standalone"
66

fuzzers/full_system/qemu_baremetal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qemu_baremetal"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/full_system/qemu_linux_kernel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qemu_linux_kernel"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Romain Malmain <[email protected]>",
66
"Dongjia Zhang <[email protected]>",

fuzzers/full_system/qemu_linux_process/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qemu_linux_process"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Romain Malmain <[email protected]>"]
55
edition = "2021"
66

fuzzers/fuzz_anything/baby_fuzzer_wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_fuzzer_wasm"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = ["Addison Crump <[email protected]>"]
55
edition = "2018"
66

fuzzers/fuzz_anything/baby_no_std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baby_no_std"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
authors = [
55
"Andrea Fioraldi <[email protected]>",
66
"Dominik Maier <[email protected]>",

fuzzers/fuzz_anything/cargo_fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo_fuzz_test"
33
edition = "2021"
4-
version = "0.13.2"
4+
version = "0.14.0"
55
description = "test"
66
authors = [
77
"Andrea Fioraldi <[email protected]>",

fuzzers/fuzz_anything/cargo_fuzz/fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl-fuzz"
3-
version = "0.13.2"
3+
version = "0.14.0"
44
publish = false
55
edition = "2021"
66

0 commit comments

Comments
 (0)