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 31556d0 commit 9b44604
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.2] - 2024-07-25

## [3.1.1] - 2024-07-25

### Compatibility
Expand Down Expand Up @@ -251,7 +253,8 @@ Update MSRV to 1.60
- Basic README

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.1...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.2...HEAD
[3.1.2]: https://github.com/assert-rs/predicates-rs/compare/v3.1.1...v3.1.2
[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
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.1"
version = "3.1.2"
description = "An implementation of boolean-valued predicate functions."
authors = ["Nick Stevens <nick@bitcurry.com>"]
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.1"
predicates = "3.1.2"
```

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.8] - 2024-07-25

## [1.0.7] - 2024-07-25

### Compatibility
Expand Down Expand Up @@ -37,7 +39,8 @@ 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.7...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.8...HEAD
[1.0.8]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.7...predicates-core-v1.0.8
[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.7"
version = "1.0.8"
description = "An API for boolean-valued predicate functions."
authors = ["Nick Stevens <nick@bitcurry.com>"]
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.11] - 2024-07-25

## [1.0.10] - 2024-07-25

### Compatibility
Expand Down Expand Up @@ -41,7 +43,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.10...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.11...HEAD
[1.0.11]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.10...predicates-tree-v1.0.11
[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
Expand Down
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.10"
version = "1.0.11"
authors = ["Nick Stevens <nick@bitcurry.com>"]
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.1"
//! predicates = "3.1.2"
//! ```
//!
//! A [prelude] is available to bring in all extension traits as well as providing
Expand Down

0 comments on commit 9b44604

Please sign in to comment.