Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Nov 5, 2022
1 parent 277a939 commit 53d22d2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [2.1.2] - 2022-11-05

### Compatibility

Update MSRV to 1.60
Expand Down Expand Up @@ -187,7 +189,8 @@ Update MSRV to 1.60
- Basic README

<!-- next-url -->
[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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <nick@bitcurry.com>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <nick@bitcurry.com>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/tree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "predicates-tree"
version = "1.0.5"
version = "1.0.6"
authors = ["Nick Stevens <nick@bitcurry.com>"]
description = "Render boolean-valued predicate functions results as a tree."
license = "MIT OR Apache-2.0"
Expand All @@ -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"] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 53d22d2

Please sign in to comment.