Skip to content

Commit

Permalink
Prepare for 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed May 17, 2024
1 parent c1cd354 commit e1fd37d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 1.0.2 - 2024-05-17

- Downgrade dependency that was [yanked](https://github.com/rust-lang/libc/issues/3608#issuecomment-2116310436)

## 1.0.1 - 2024-05-07

- Only make AFL++ sync to shared corpus if Honggfuzz is also running
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ziggy"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
license = "Apache-2.0"
description = "A multi-fuzzer management utility for all of your Rust fuzzing needs 🧑‍🎤"
Expand All @@ -25,7 +25,7 @@ glob = { version = "0.3.1", optional = true }
# We use our own fork of honggfuzz to use the tool's latest release
# https://github.com/rust-fuzz/honggfuzz-rs/pull/85
honggfuzz = { package = "ziggy-honggfuzz-2", version = "0.5.55", optional = true }
libc = { version = "0.2.154", optional = true }
libc = { version = "0.2.153", optional = true }
log = { version = "0.4.21", optional = true }
semver = { version = "1.0.23", optional = true }
strip-ansi-escapes = { version = "0.2.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ To create a fuzzer, simply add `ziggy` as a dependency.

```toml
[dependencies]
ziggy = { version = "1.0.1", default-features = false }
ziggy = { version = "1.0.2", default-features = false }
```

Then use the `fuzz!` macro inside your `main` to create a harness.
Expand Down

0 comments on commit e1fd37d

Please sign in to comment.