Skip to content

Commit

Permalink
release 0.11.0 (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft committed Jun 8, 2024
1 parent e40f5af commit be95281
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 36 deletions.
6 changes: 3 additions & 3 deletions bin/cargo-bolero/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-bolero"
version = "0.10.1"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "cargo command for running bolero fuzz tests"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -21,8 +21,8 @@ libfuzzer = []
[dependencies]
anyhow = "1.0"
bit-set = "0.5"
bolero-afl = { version = "0.10", path = "../../lib/bolero-afl", default-features = false, features = ["bin"], optional = true }
bolero-honggfuzz = { version = "0.10", path = "../../lib/bolero-honggfuzz", default-features = false, features = ["bin"], optional = true }
bolero-afl = { version = "0.11", path = "../../lib/bolero-afl", default-features = false, features = ["bin"], optional = true }
bolero-honggfuzz = { version = "0.11", path = "../../lib/bolero-honggfuzz", default-features = false, features = ["bin"], optional = true }
cargo_metadata = "0.18"
humantime = "2"
lazy_static = "1"
Expand Down
4 changes: 2 additions & 2 deletions lib/bolero-afl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-afl"
version = "0.10.0"
version = "0.11.0"
authors = ["Cameron Bytheway <bythewc@amazon.com>"]
description = "afl plugin for bolero"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -16,7 +16,7 @@ bin = []
lib = ["bolero-engine"]

[dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine", optional = true }
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true }

[build-dependencies]
cc = "1.0"
8 changes: 4 additions & 4 deletions lib/bolero-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-engine"
version = "0.10.2"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "fuzz and property testing framework"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -17,9 +17,9 @@ rng = ["rand", "rand_xoshiro", "bolero-generator/alloc"]

[dependencies]
anyhow = "1"
bolero-generator = { version = "0.10", path = "../bolero-generator", default-features = false }
bolero-generator = { version = "0.11", path = "../bolero-generator", default-features = false }
lazy_static = "1"
pretty-hex = "0.3"
pretty-hex = { version = "0.4", default-features = false }
rand = { version = "0.8", optional = true }
rand_xoshiro = { version = "0.6", optional = true }

Expand All @@ -28,5 +28,5 @@ backtrace = { version = "0.3", default-features = false, features = ["std"] }

[dev-dependencies]
bolero-generator = { path = "../bolero-generator", features = ["std"] }
rand = "^0.8"
rand = "0.8"
rand_xoshiro = "0.6"
10 changes: 5 additions & 5 deletions lib/bolero-generator-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-generator-derive"
version = "0.10.0"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "value generator for testing and fuzzing"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -14,9 +14,9 @@ readme = "../bolero-generator/README.md"
proc-macro = true

[dependencies]
proc-macro-crate = "1.2"
proc-macro2 = "1.0"
quote = "1.0"
proc-macro-crate = "2"
proc-macro2 = "1"
quote = "1"
# The `full` feature is required to correctly parse attributes
# TODO investigate if this can be reduced in scope
syn = { version = "1.0", features = ["full"] }
syn = { version = "1", features = ["full"] }
8 changes: 4 additions & 4 deletions lib/bolero-generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-generator"
version = "0.10.2"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "value generator for testing and fuzzing"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -18,9 +18,9 @@ alloc = ["rand_core/alloc"]

[dependencies]
arbitrary = { version = "1.0", optional = true }
bolero-generator-derive = { version = "0.10.0", path = "../bolero-generator-derive" }
bolero-generator-derive = { version = "0.11", path = "../bolero-generator-derive" }
either = { version = "1.5", default-features = false, optional = true }
rand_core = { version = "^0.6", default-features = false }
rand_core = { version = "0.6", default-features = false }

[dev-dependencies]
rand = "^0.8"
rand = "0.8"
4 changes: 2 additions & 2 deletions lib/bolero-honggfuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-honggfuzz"
version = "0.10.0"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "honggfuzz plugin for bolero"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -16,4 +16,4 @@ bin = []
lib = ["bolero-engine"]

[dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine", optional = true }
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true }
4 changes: 2 additions & 2 deletions lib/bolero-kani/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-kani"
version = "0.10.0"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "kani plugin for bolero"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -16,4 +16,4 @@ bin = []
lib = ["bolero-engine"]

[dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine", optional = true }
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true }
4 changes: 2 additions & 2 deletions lib/bolero-libfuzzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-libfuzzer"
version = "0.10.0"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "libfuzzer plugin for bolero"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -16,7 +16,7 @@ bin = []
lib = ["bolero-engine"]

[dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine", features = ["cache"], optional = true }
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache"], optional = true }

[build-dependencies]
cc = "1.0"
24 changes: 12 additions & 12 deletions lib/bolero/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero"
version = "0.10.1"
version = "0.11.0"
authors = ["Cameron Bytheway <bytheway.cameron@gmail.com>"]
description = "fuzz and property testing front-end"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -18,29 +18,29 @@ alloc = ["bolero-generator/alloc"]
arbitrary = ["bolero-generator/arbitrary"]

[dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine" }
bolero-generator = { version = "0.10", path = "../bolero-generator", default-features = false }
bolero-engine = { version = "0.11", path = "../bolero-engine" }
bolero-generator = { version = "0.11", path = "../bolero-generator", default-features = false }
cfg-if = "1"

[target.'cfg(fuzzing_afl)'.dependencies]
bolero-afl = { version = "0.10", path = "../bolero-afl" }
bolero-afl = { version = "0.11", path = "../bolero-afl" }

[target.'cfg(fuzzing_libfuzzer)'.dependencies]
bolero-libfuzzer = { version = "0.10", path = "../bolero-libfuzzer" }
bolero-libfuzzer = { version = "0.11", path = "../bolero-libfuzzer" }

[target.'cfg(fuzzing_honggfuzz)'.dependencies]
bolero-honggfuzz = { version = "0.10", path = "../bolero-honggfuzz" }
bolero-honggfuzz = { version = "0.11", path = "../bolero-honggfuzz" }

[target.'cfg(fuzzing_random)'.dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine", features = ["cache", "rng"] }
rand = { version = "^0.8" }
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache", "rng"] }
rand = { version = "0.8" }

[target.'cfg(kani)'.dependencies]
bolero-kani = { version = "0.10", path = "../bolero-kani" }
bolero-kani = { version = "0.11", path = "../bolero-kani" }

[target.'cfg(not(any(fuzzing, kani)))'.dependencies]
bolero-engine = { version = "0.10", path = "../bolero-engine", features = ["cache", "rng"] }
rand = { version = "^0.8" }
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache", "rng"] }
rand = { version = "0.8" }

[dev-dependencies]
rand = "^0.8"
rand = "0.8"

0 comments on commit be95281

Please sign in to comment.