Skip to content

Commit d16d9cb

Browse files
committed
chore: Release
1 parent 47812df commit d16d9cb

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

+4-1
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.1.0] - 2024-01-15
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.70.0
@@ -243,7 +245,8 @@ Update MSRV to 1.60
243245
- Basic README
244246

245247
<!-- next-url -->
246-
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.0.4...HEAD
248+
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.0...HEAD
249+
[3.1.0]: https://github.com/assert-rs/predicates-rs/compare/v3.0.4...v3.1.0
247250
[3.0.4]: https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4
248251
[3.0.3]: https://github.com/assert-rs/predicates-rs/compare/v3.0.2...v3.0.3
249252
[3.0.2]: https://github.com/assert-rs/predicates-rs/compare/v3.0.1...v3.0.2

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ include = [
1818

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

README.md

+1-1
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 = "3.0.4"
18+
predicates = "3.1.0"
1919
```
2020

2121
Next, add this to your crate:

crates/tree/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ predicates-core = { version = "1.0", path = "../core" }
3232
termtree = "0.4.1"
3333

3434
[dev-dependencies]
35-
predicates = { version = "3.0", path = "../..", features = ["color"] }
35+
predicates = { version = "3.1", path = "../..", features = ["color"] }

src/lib.rs

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

0 commit comments

Comments
 (0)