Skip to content

Commit 2f21e56

Browse files
committed
chore: Release
1 parent 7b72b70 commit 2f21e56

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
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+
## [3.0.0] - 2023-03-14
11+
1012
### Compatibility
1113

1214
- `color` feature no longer conditionally applies color. Instead color will be applied when formatting as `{:#}`
@@ -205,7 +207,8 @@ Update MSRV to 1.60
205207
- Basic README
206208

207209
<!-- next-url -->
208-
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v2.1.5...HEAD
210+
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.0.0...HEAD
211+
[3.0.0]: https://github.com/assert-rs/predicates-rs/compare/v2.1.5...v3.0.0
209212
[2.1.5]: https://github.com/assert-rs/predicates-rs/compare/v2.1.4...v2.1.5
210213
[2.1.4]: https://github.com/assert-rs/predicates-rs/compare/v2.1.3...v2.1.4
211214
[2.1.3]: https://github.com/assert-rs/predicates-rs/compare/v2.1.2...v2.1.3

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ include = [
1818

1919
[package]
2020
name = "predicates"
21-
version = "2.1.5"
21+
version = "3.0.0"
2222
description = "An implementation of boolean-valued predicate functions."
2323
authors = ["Nick Stevens <[email protected]>"]
2424
repository = "https://github.com/assert-rs/predicates-rs"

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.5"
18+
predicates = "3.0.0"
1919
```
2020

2121
Next, add this to your crate:

crates/tree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ predicates-core = { version = "1.0", path = "../core" }
2828
termtree = "0.4.1"
2929

3030
[dev-dependencies]
31-
predicates = { version = "2.1", path = "../..", features = ["color"] }
31+
predicates = { version = "3.0", path = "../..", features = ["color"] }

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

0 commit comments

Comments
 (0)