Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jul 25, 2024
1 parent b87c960 commit 31556d0
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 11 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

## [3.1.1] - 2024-07-25

### Compatibility

- Update MSRV to 1.74
Expand Down Expand Up @@ -249,7 +251,8 @@ Update MSRV to 1.60
- Basic README

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.0...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.1...HEAD
[3.1.1]: https://github.com/assert-rs/predicates-rs/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/assert-rs/predicates-rs/compare/v3.0.4...v3.1.0
[3.0.4]: https://github.com/assert-rs/predicates-rs/compare/v3.0.3...v3.0.4
[3.0.3]: https://github.com/assert-rs/predicates-rs/compare/v3.0.2...v3.0.3
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ zero_sized_map_values = "warn"

[package]
name = "predicates"
version = "3.1.0"
version = "3.1.1"
description = "An implementation of boolean-valued predicate functions."
authors = ["Nick Stevens <[email protected]>"]
repository = "https://github.com/assert-rs/predicates-rs"
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 = "3.1.0"
predicates = "3.1.1"
```

Next, add this to your crate:
Expand Down
5 changes: 4 additions & 1 deletion crates/core/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

## [1.0.7] - 2024-07-25

### Compatibility

- Update MSRV to 1.70.0
Expand Down Expand Up @@ -35,6 +37,7 @@ Update MSRV to 1.60
- Predicates must also implement `PredicateReflection`

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.6...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.7...HEAD
[1.0.7]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.6...predicates-core-v1.0.7
[1.0.6]: https://github.com/assert-rs/predicates-rs/compare/v0.9.0...predicates-core-v1.0.6
[0.9.0]: https://github.com/assert-rs/predicates-rs/compare/v0.5.2...v0.9.0
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.6"
version = "1.0.7"
description = "An API for boolean-valued predicate functions."
authors = ["Nick Stevens <[email protected]>"]
readme = "README.md"
Expand Down
5 changes: 4 additions & 1 deletion crates/tree/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

## [1.0.10] - 2024-07-25

### Compatibility

- Update MSRV to 1.70.0
Expand Down Expand Up @@ -39,7 +41,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Support for rendering a predicate as a tree.

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.9...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.10...HEAD
[1.0.10]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.9...predicates-tree-v1.0.10
[1.0.9]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.8...predicates-tree-v1.0.9
[1.0.8]: https://github.com/assert-rs/predicates-rs/compare/v0.9.0...predicates-tree-v1.0.8
[0.9.0]: https://github.com/assert-rs/predicates-rs/compare/v0.5.2...v0.9.0
2 changes: 1 addition & 1 deletion 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.9"
version = "1.0.10"
authors = ["Nick Stevens <[email protected]>"]
description = "Render boolean-valued predicate functions results as a tree."
readme = "README.md"
Expand Down
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 = "3.1.0"
//! predicates = "3.1.1"
//! ```
//!
//! A [prelude] is available to bring in all extension traits as well as providing
Expand Down

0 comments on commit 31556d0

Please sign in to comment.