From 0b4ffe8d08891b1bc14079b811a74df7f98dc4da Mon Sep 17 00:00:00 2001 From: Matthew Russo Date: Sun, 1 Oct 2023 12:32:28 -0700 Subject: [PATCH] [Release] 1.3.1 -- fix for incompatible bit-set/bit-vec versions (#375) * [Fix] Build : update bit-set to 0.5.2 to align with necessary version for bit-vec 0.6 * [Release] 1.3.1 --- proptest/CHANGELOG.md | 6 ++++++ proptest/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/proptest/CHANGELOG.md b/proptest/CHANGELOG.md index 67ef579e..0dca677d 100644 --- a/proptest/CHANGELOG.md +++ b/proptest/CHANGELOG.md @@ -1,5 +1,11 @@ ## Unreleased +## 1.3.1 + +## Other Notes + +- `bit-set` updated from 0.5.0 to 0.5.2 to ensure minimum compatible version with bit-vec 0.6 + ## 1.3.0 ### Breaking Changes diff --git a/proptest/Cargo.toml b/proptest/Cargo.toml index 6f75d1f6..5395d65f 100644 --- a/proptest/Cargo.toml +++ b/proptest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proptest" -version = "1.3.0" +version = "1.3.1" authors = ["Jason Lingle"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -79,7 +79,7 @@ version = "0.7" optional = true [dependencies.bit-set] -version = "0.5.0" +version = "0.5.2" optional = true [dependencies.bit-vec]