Skip to content

Commit

Permalink
Bump to version 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Oct 14, 2020
1 parent c583ffb commit ab4adcf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,25 @@ Released YYYY-MM-DD.

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

## 0.4.7

Released 2020-10-14.

### Added

* Added an optimization to avoid unnecessarily consuming bytes from the
underlying data when there is only one possible choice in
`Unstructured::{int_in_range, choose, etc..}`.

* Added license files to the derive crate.

### Changed

* The `Arbitrary` implementation for `std::time::Duration` should now be faster
and produce durations with a more-uniform distribution of nanoseconds.

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

## 0.4.6

Released 2020-08-22.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arbitrary"
version = "0.4.6" # Make sure this matches the derive crate version
version = "0.4.7" # Make sure this matches the derive crate version
authors = ["The Rust-Fuzz Project Developers", "Nick Fitzgerald <fitzgen@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>", "Simonas Kazlauskas <arbitrary@kazlauskas.me>", "Brian L. Troutwine <brian@troutwine.us>"]
categories = ["development-tools::testing"]
edition = "2018"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/nagisa/rust_arbitrary/"
documentation = "https://docs.rs/arbitrary/"

[dependencies]
derive_arbitrary = { version = "=0.4.6", path = "./derive", optional = true }
derive_arbitrary = { version = "=0.4.7", path = "./derive", optional = true }

[dev-dependencies]

Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "derive_arbitrary"
version = "0.4.6" # Make sure it matches the version of the arbitrary crate itself.
version = "0.4.7" # Make sure it matches the version of the arbitrary crate itself.
authors = ["The Rust-Fuzz Project Developers", "Nick Fitzgerald <fitzgen@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>", "Andre Bogus <bogusandre@gmail.com>"]
categories = ["development-tools::testing"]
edition = "2018"
Expand Down

0 comments on commit ab4adcf

Please sign in to comment.