Skip to content

Commit

Permalink
Bump to version 0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Nov 7, 2024
1 parent 6947ccb commit ebfcedf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
22 changes: 19 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ Released YYYY-MM-DD.

### Added

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

### Changed

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

### Deprecated

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

--------------------------------------------------------------------------------

## 0.4.8

Released 2024-11-07.

### Added

* Bindings to `LLVMFuzzerCustomCrossOver` through the `fuzz_crossover`
macro. See the `example_crossover` directory in this crate's repo for a
complete example.

### Changed

* Updated to `libFuzzer` commit `ab51eccf88f5321e7c60591c5546b254b6afab99`
(`release/19.x`).

--------------------------------------------------------------------------------

## 0.4.7

Released 2023-08-10.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0/NCSA"
name = "libfuzzer-sys"
readme = "./README.md"
repository = "https://github.com/rust-fuzz/libfuzzer"
version = "0.4.7"
version = "0.4.8"

[dependencies]
arbitrary = "1"
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,9 +625,9 @@ pub fn fuzzer_mutate(data: &mut [u8], size: usize, max_size: usize) -> usize {
/// });
/// ```
///
/// This example is a minimized version of [Erik Rigtorp's floating point summation fuzzing example][1].
/// A more detailed version of this experiment can be found in the
/// `example_crossover` directory.
/// This example is a minimized version of [Erik Rigtorp's floating point
/// summation fuzzing example][1]. A more detailed version of this experiment
/// can be found in the `example_crossover` directory.
///
/// [1]: https://rigtorp.se/fuzzing-floating-point-code/
#[macro_export]
Expand Down

0 comments on commit ebfcedf

Please sign in to comment.