From 2d0a1a268a4727a63cf183e3ac6645fb44d5a16c Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Tue, 17 Dec 2024 07:42:52 +1100 Subject: [PATCH] Prepare 1.6.0 release This isn't necessarily the actual commit that will become v1.6.0; I've just updated the version, readme, and changelog. --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ef41fe..fe92a4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### v1.6.0 (2024-12-17) + +- **Features**: + - Add quickcheck support, gated behind the `quickcheck` feature. + + ### v1.5.1 (2024-02-27) - **Fixes**: diff --git a/Cargo.toml b/Cargo.toml index 9cd7f85..47ad361 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rangemap" -version = "1.5.1" +version = "1.6.0" authors = ["Jeff Parsons "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/README.md b/README.md index b10ba5e..907a03d 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,8 @@ You can enable the **serde1** feature in your _Cargo.toml_ file like so: rangemap = { version = "1", features = ["serde1"] } ``` +You can similarly enable support for _quickcheck_ by enabling +the **quickcheck** feature. ## Building without the Rust standard library