Skip to content

Commit ebfcedf

Browse files
committed
Bump to version 0.4.8
1 parent 6947ccb commit ebfcedf

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ Released YYYY-MM-DD.
44

55
### Added
66

7-
* Bindings to `LLVMFuzzerCustomCrossOver` through the `fuzz_crossover` macro.
8-
* `example_crossover` using both `fuzz_mutator` and `fuzz_crossover` (adapted from @rigtorp)
7+
* TODO (or remove section if none)
98

109
### Changed
1110

12-
* Updated to `libFuzzer` commit `3747cde5e84f` (`release/18.x`).
11+
* TODO (or remove section if none)
1312

1413
### Deprecated
1514

@@ -29,6 +28,23 @@ Released YYYY-MM-DD.
2928

3029
--------------------------------------------------------------------------------
3130

31+
## 0.4.8
32+
33+
Released 2024-11-07.
34+
35+
### Added
36+
37+
* Bindings to `LLVMFuzzerCustomCrossOver` through the `fuzz_crossover`
38+
macro. See the `example_crossover` directory in this crate's repo for a
39+
complete example.
40+
41+
### Changed
42+
43+
* Updated to `libFuzzer` commit `ab51eccf88f5321e7c60591c5546b254b6afab99`
44+
(`release/19.x`).
45+
46+
--------------------------------------------------------------------------------
47+
3248
## 0.4.7
3349

3450
Released 2023-08-10.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT/Apache-2.0/NCSA"
66
name = "libfuzzer-sys"
77
readme = "./README.md"
88
repository = "https://github.com/rust-fuzz/libfuzzer"
9-
version = "0.4.7"
9+
version = "0.4.8"
1010

1111
[dependencies]
1212
arbitrary = "1"

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -625,9 +625,9 @@ pub fn fuzzer_mutate(data: &mut [u8], size: usize, max_size: usize) -> usize {
625625
/// });
626626
/// ```
627627
///
628-
/// This example is a minimized version of [Erik Rigtorp's floating point summation fuzzing example][1].
629-
/// A more detailed version of this experiment can be found in the
630-
/// `example_crossover` directory.
628+
/// This example is a minimized version of [Erik Rigtorp's floating point
629+
/// summation fuzzing example][1]. A more detailed version of this experiment
630+
/// can be found in the `example_crossover` directory.
631631
///
632632
/// [1]: https://rigtorp.se/fuzzing-floating-point-code/
633633
#[macro_export]

0 commit comments

Comments
 (0)