Skip to content

Commit 27f82dc

Browse files
committed
chore: Release
1 parent 63481c3 commit 27f82dc

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
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.3] - 2022-11-13
11+
1012
## [2.1.2] - 2022-11-05
1113

1214
### Compatibility
@@ -189,7 +191,8 @@ Update MSRV to 1.60
189191
- Basic README
190192

191193
<!-- next-url -->
192-
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.2...HEAD
194+
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.3...HEAD
195+
[2.1.3]: https://github.com/assert-rs/predicates-rs/compare/v2.1.2...v2.1.3
193196
[2.1.2]: https://github.com/assert-rs/predicates-rs/compare/v2.1.1...v2.1.2
194197
[2.1.1]: https://github.com/assert-rs/predicates-rs/compare/v2.1.0...v2.1.1
195198
[2.1.0]: https://github.com/assert-rs/predicates-rs/compare/v2.0.3...v2.1.0

Cargo.toml

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

44
[package]
55
name = "predicates"
6-
version = "2.1.2"
6+
version = "2.1.3"
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.2"
18+
predicates = "2.1.3"
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.4"
3+
version = "1.0.5"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "predicates-tree"
3-
version = "1.0.6"
3+
version = "1.0.7"
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"

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.2"
27+
//! predicates = "2.1.3"
2828
//! ```
2929
//!
3030
//! A [prelude] is available to bring in all extension traits as well as providing

0 commit comments

Comments
 (0)