From 53d22d2cbe6afd7706fe332ffcacbc49852b8db4 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 4 Nov 2022 20:36:28 -0500 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 2 +- crates/core/Cargo.toml | 2 +- crates/tree/Cargo.toml | 4 ++-- src/lib.rs | 2 +- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb96ec8..5899a6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [2.1.2] - 2022-11-05 + ### Compatibility Update MSRV to 1.60 @@ -187,7 +189,8 @@ Update MSRV to 1.60 - Basic README -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.1...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.2...HEAD +[2.1.2]: https://github.com/assert-rs/predicates-rs/compare/v2.1.1...v2.1.2 [2.1.1]: https://github.com/assert-rs/predicates-rs/compare/v2.1.0...v2.1.1 [2.1.0]: https://github.com/assert-rs/predicates-rs/compare/v2.0.3...v2.1.0 [2.0.3]: https://github.com/assert-rs/predicates-rs/compare/v2.0.2...v2.0.3 diff --git a/Cargo.toml b/Cargo.toml index c09bd33..64139f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/core", "crates/tree"] [package] name = "predicates" -version = "2.1.1" +version = "2.1.2" description = "An implementation of boolean-valued predicate functions." authors = ["Nick Stevens "] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 1a54850..a7c21d1 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -predicates = "2.1.1" +predicates = "2.1.2" ``` Next, add this to your crate: diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 61c7064..a36cbca 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "predicates-core" -version = "1.0.3" +version = "1.0.4" description = "An API for boolean-valued predicate functions." authors = ["Nick Stevens "] license = "MIT OR Apache-2.0" diff --git a/crates/tree/Cargo.toml b/crates/tree/Cargo.toml index f74fbbf..beb9933 100644 --- a/crates/tree/Cargo.toml +++ b/crates/tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "predicates-tree" -version = "1.0.5" +version = "1.0.6" authors = ["Nick Stevens "] description = "Render boolean-valued predicate functions results as a tree." license = "MIT OR Apache-2.0" @@ -25,4 +25,4 @@ predicates-core = { version = "1.0", path = "../core" } termtree = "0.4" [dev-dependencies] -predicates = { version = "2.0", path = "../..", features = ["color-auto"] } +predicates = { version = "2.1", path = "../..", features = ["color-auto"] } diff --git a/src/lib.rs b/src/lib.rs index bf627a2..a1de585 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ //! //! ```toml //! [dependencies] -//! predicates = "2.1.1" +//! predicates = "2.1.2" //! ``` //! //! A [prelude] is available to bring in all extension traits as well as providing