Skip to content

Commit

Permalink
Prepare for 0.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Oct 17, 2022
1 parent 125a59a commit 9455159
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 0.2.2 - 2022-10-17

- Move logs to a `logs` directory (#4)
- Automatically select target if possible (#1)

## 0.2.1 - 2022-09-23

- Add reset_lazy static option support for better AFL++ stability
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ziggy"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "Apache-2.0"
description = "A multi-fuzzer management utility for all of your Rust fuzzing needs 🧑‍🎤"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Features will also include:

## Usage example

First, install `ziggy` by running:
First, install `ziggy` and its dependencies by running:

```
cargo install ziggy afl honggfuzz grcov
Expand All @@ -32,7 +32,7 @@ Here is the output of the tool's help:

```
$ cargo ziggy
cargo-ziggy 0.2.1
cargo-ziggy 0.2.2
A multi-fuzzer management utility for all of your Rust fuzzing needs 🧑‍🎤
USAGE:
Expand Down
14 changes: 14 additions & 0 deletions examples/arbitrary/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Ziggy example - Arbitrary

In the root project directory, run:

```
cargo install afl honggfuzz
cargo install --force --path .
```

Then, in the `examples/arbitrary` directory, run:

```
cargo ziggy fuzz
```
2 changes: 1 addition & 1 deletion examples/url/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ cargo install --force --path .
Then, in the `examples/url` directory, run:

```
cargo ziggy fuzz url-fuzz
cargo ziggy fuzz
```
2 changes: 1 addition & 1 deletion examples/with_lazy_static/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ cargo install --force --path .
Then, in the `examples/with_lazy_static` directory, run:

```
cargo ziggy fuzz with-lazy-static
cargo ziggy fuzz
```

0 comments on commit 9455159

Please sign in to comment.