diff --git a/CHANGELOG.md b/CHANGELOG.md index 5159a5a..32af286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changes +## 0.7.2 - 2023-10-12 + +- Add `-z, --ziggy-output` flag and `ZIGGY_OUTPUT` environment variable to set ziggy's output directory +- Fix a couple of misbehaviours when building the fuzzers +- Improve populating of main corpus +- Add CI and tests +- Improve documentation + ## 0.7.1 - 2023-10-05 - Fix honggfuzz bug diff --git a/Cargo.toml b/Cargo.toml index 29db12b..f531883 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ziggy" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "Apache-2.0" description = "A multi-fuzzer management utility for all of your Rust fuzzing needs 🧑‍🎤" diff --git a/README.md b/README.md index f43d0f3..46fb752 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ Commands: help Print this message or the help of the given subcommand(s) Options: - -h, --help Print help information - -V, --version Print version information + -h, --help Print help + -V, --version Print version ``` For an example fuzz project, see [the url example](./examples/url/).