Skip to content

Commit 53d22d2

Browse files
committed
chore: Release
1 parent 277a939 commit 53d22d2

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [2.1.2] - 2022-11-05
11+
1012
### Compatibility
1113

1214
Update MSRV to 1.60
@@ -187,7 +189,8 @@ Update MSRV to 1.60
187189
- Basic README
188190

189191
<!-- next-url -->
190-
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.1...HEAD
192+
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.2...HEAD
193+
[2.1.2]: https://github.com/assert-rs/predicates-rs/compare/v2.1.1...v2.1.2
191194
[2.1.1]: https://github.com/assert-rs/predicates-rs/compare/v2.1.0...v2.1.1
192195
[2.1.0]: https://github.com/assert-rs/predicates-rs/compare/v2.0.3...v2.1.0
193196
[2.0.3]: https://github.com/assert-rs/predicates-rs/compare/v2.0.2...v2.0.3

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/core", "crates/tree"]
33

44
[package]
55
name = "predicates"
6-
version = "2.1.1"
6+
version = "2.1.2"
77
description = "An implementation of boolean-valued predicate functions."
88
authors = ["Nick Stevens <nick@bitcurry.com>"]
99
license = "MIT OR Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ First, add this to your `Cargo.toml`:
1515

1616
```toml
1717
[dependencies]
18-
predicates = "2.1.1"
18+
predicates = "2.1.2"
1919
```
2020

2121
Next, add this to your crate:

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "predicates-core"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = "An API for boolean-valued predicate functions."
55
authors = ["Nick Stevens <nick@bitcurry.com>"]
66
license = "MIT OR Apache-2.0"

crates/tree/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "predicates-tree"
3-
version = "1.0.5"
3+
version = "1.0.6"
44
authors = ["Nick Stevens <nick@bitcurry.com>"]
55
description = "Render boolean-valued predicate functions results as a tree."
66
license = "MIT OR Apache-2.0"
@@ -25,4 +25,4 @@ predicates-core = { version = "1.0", path = "../core" }
2525
termtree = "0.4"
2626

2727
[dev-dependencies]
28-
predicates = { version = "2.0", path = "../..", features = ["color-auto"] }
28+
predicates = { version = "2.1", path = "../..", features = ["color-auto"] }

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
//!
2525
//! ```toml
2626
//! [dependencies]
27-
//! predicates = "2.1.1"
27+
//! predicates = "2.1.2"
2828
//! ```
2929
//!
3030
//! A [prelude] is available to bring in all extension traits as well as providing

0 commit comments

Comments
 (0)