diff --git a/CHANGELOG.md b/CHANGELOG.md index 57e4bfd..d84c7d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [3.1.0] - 2024-01-15 + ### Compatibility - Update MSRV to 1.70.0 @@ -243,7 +245,8 @@ Update MSRV to 1.60 - Basic README -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.0.4...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.0...HEAD +[3.1.0]: https://github.com/assert-rs/predicates-rs/compare/v3.0.4...v3.1.0 [3.0.4]: https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4 [3.0.3]: https://github.com/assert-rs/predicates-rs/compare/v3.0.2...v3.0.3 [3.0.2]: https://github.com/assert-rs/predicates-rs/compare/v3.0.1...v3.0.2 diff --git a/Cargo.lock b/Cargo.lock index ce12e5d..b03f492 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,7 +61,7 @@ dependencies = [ [[package]] name = "predicates" -version = "3.0.4" +version = "3.1.0" dependencies = [ "anstyle", "difflib", diff --git a/Cargo.toml b/Cargo.toml index 78d7b05..6d7a85b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ include = [ [package] name = "predicates" -version = "3.0.4" +version = "3.1.0" description = "An implementation of boolean-valued predicate functions." authors = ["Nick Stevens "] repository = "https://github.com/assert-rs/predicates-rs" diff --git a/README.md b/README.md index 0889628..9ab4b3c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -predicates = "3.0.4" +predicates = "3.1.0" ``` Next, add this to your crate: diff --git a/crates/tree/Cargo.toml b/crates/tree/Cargo.toml index 838ecd7..cc89bf1 100644 --- a/crates/tree/Cargo.toml +++ b/crates/tree/Cargo.toml @@ -32,4 +32,4 @@ predicates-core = { version = "1.0", path = "../core" } termtree = "0.4.1" [dev-dependencies] -predicates = { version = "3.0", path = "../..", features = ["color"] } +predicates = { version = "3.1", path = "../..", features = ["color"] } diff --git a/src/lib.rs b/src/lib.rs index f2a1f9e..36448cb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ //! //! ```toml //! [dependencies] -//! predicates = "3.0.4" +//! predicates = "3.1.0" //! ``` //! //! A [prelude] is available to bring in all extension traits as well as providing