Skip to content

Commit 66e75c5

Browse files
committed
Bump to version 1.3.1
1 parent 04054df commit 66e75c5

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ Released YYYY-MM-DD.
2828

2929
--------------------------------------------------------------------------------
3030

31+
## 1.3.2
32+
33+
Released 2023-10-30.
34+
35+
### Added
36+
37+
* Added `Arbitrary` implementations for `Arc<[T]>` and
38+
`Rc<[T]>`. [#160](https://github.com/rust-fuzz/arbitrary/pull/160)
39+
40+
--------------------------------------------------------------------------------
41+
3142
## 1.3.1
3243

3344
Released 2023-10-11.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arbitrary"
3-
version = "1.3.1" # Make sure this matches the derive crate version (not including the patch version)
3+
version = "1.3.2" # Make sure this matches the derive crate version (not including the patch version)
44
authors = [
55
"The Rust-Fuzz Project Developers",
66
"Nick Fitzgerald <fitzgen@gmail.com>",
@@ -20,7 +20,7 @@ documentation = "https://docs.rs/arbitrary/"
2020
rust-version = "1.63.0"
2121

2222
[dependencies]
23-
derive_arbitrary = { version = "1.3.1", path = "./derive", optional = true }
23+
derive_arbitrary = { version = "1.3.2", path = "./derive", optional = true }
2424

2525
[features]
2626
# Turn this feature on to enable support for `#[derive(Arbitrary)]`.

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_arbitrary"
3-
version = "1.3.1" # Make sure it matches the version of the arbitrary crate itself (not including the patch version)
3+
version = "1.3.2" # Make sure it matches the version of the arbitrary crate itself (not including the patch version)
44
authors = [
55
"The Rust-Fuzz Project Developers",
66
"Nick Fitzgerald <fitzgen@gmail.com>",

0 commit comments

Comments
 (0)