From 40045bb526b9efd30f12604af2fe0fd95fec4223 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 19 Dec 2024 12:53:25 -0600 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 6 +++--- Cargo.toml | 2 +- README.md | 2 +- crates/core/CHANGELOG.md | 5 ++++- crates/core/Cargo.toml | 2 +- crates/tree/CHANGELOG.md | 5 ++++- crates/tree/Cargo.toml | 2 +- src/lib.rs | 2 +- 9 files changed, 20 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e523965..9573b53 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.3] - 2024-12-19 + ### Features - The `boxed` function is now available for predicates with an `Item` type that @@ -258,7 +260,8 @@ Update MSRV to 1.60 - Basic README -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.2...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.3...HEAD +[3.1.3]: https://github.com/assert-rs/predicates-rs/compare/v3.1.2...v3.1.3 [3.1.2]: https://github.com/assert-rs/predicates-rs/compare/v3.1.1...v3.1.2 [3.1.1]: https://github.com/assert-rs/predicates-rs/compare/v3.1.0...v3.1.1 [3.1.0]: https://github.com/assert-rs/predicates-rs/compare/v3.0.4...v3.1.0 diff --git a/Cargo.lock b/Cargo.lock index 48eb0f3..5953390 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,7 +61,7 @@ dependencies = [ [[package]] name = "predicates" -version = "3.1.2" +version = "3.1.3" dependencies = [ "anstyle", "difflib", @@ -74,11 +74,11 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.8" +version = "1.0.9" [[package]] name = "predicates-tree" -version = "1.0.11" +version = "1.0.12" dependencies = [ "predicates", "predicates-core", diff --git a/Cargo.toml b/Cargo.toml index f72d1fa..012058e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ zero_sized_map_values = "warn" [package] name = "predicates" -version = "3.1.2" +version = "3.1.3" description = "An implementation of boolean-valued predicate functions." authors = ["Nick Stevens "] homepage = "https://github.com/assert-rs/predicates-rs" diff --git a/README.md b/README.md index 6d6dde7..575dc0d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -predicates = "3.1.2" +predicates = "3.1.3" ``` Next, add this to your crate: diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 26ad634..ea1abab 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.0.9] - 2024-12-19 + ## [1.0.8] - 2024-07-25 ## [1.0.7] - 2024-07-25 @@ -39,7 +41,8 @@ Update MSRV to 1.60 - Predicates must also implement `PredicateReflection` -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.8...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.9...HEAD +[1.0.9]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.8...predicates-core-v1.0.9 [1.0.8]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.7...predicates-core-v1.0.8 [1.0.7]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.6...predicates-core-v1.0.7 [1.0.6]: https://github.com/assert-rs/predicates-rs/compare/v0.9.0...predicates-core-v1.0.6 diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 953007d..8ab9f61 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "predicates-core" -version = "1.0.8" +version = "1.0.9" description = "An API for boolean-valued predicate functions." authors = ["Nick Stevens "] readme = "README.md" diff --git a/crates/tree/CHANGELOG.md b/crates/tree/CHANGELOG.md index f390cce..b34c853 100644 --- a/crates/tree/CHANGELOG.md +++ b/crates/tree/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.0.12] - 2024-12-19 + ## [1.0.11] - 2024-07-25 ## [1.0.10] - 2024-07-25 @@ -43,7 +45,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Support for rendering a predicate as a tree. -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.11...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.12...HEAD +[1.0.12]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.11...predicates-tree-v1.0.12 [1.0.11]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.10...predicates-tree-v1.0.11 [1.0.10]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.9...predicates-tree-v1.0.10 [1.0.9]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.8...predicates-tree-v1.0.9 diff --git a/crates/tree/Cargo.toml b/crates/tree/Cargo.toml index 90234a9..e50884c 100644 --- a/crates/tree/Cargo.toml +++ b/crates/tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "predicates-tree" -version = "1.0.11" +version = "1.0.12" authors = ["Nick Stevens "] description = "Render boolean-valued predicate functions results as a tree." readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index d2ec537..2c9b19b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ //! //! ```toml //! [dependencies] -//! predicates = "3.1.2" +//! predicates = "3.1.3" //! ``` //! //! A [prelude] is available to bring in all extension traits as well as providing