Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Dec 19, 2024
1 parent 3480ad7 commit 40045bb
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.3] - 2024-12-19

### Features

- The `boxed` function is now available for predicates with an `Item` type that
Expand Down Expand Up @@ -258,7 +260,8 @@ Update MSRV to 1.60
- Basic README

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.2...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.1.3...HEAD
[3.1.3]: https://github.com/assert-rs/predicates-rs/compare/v3.1.2...v3.1.3
[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
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.2"
version = "3.1.3"
description = "An implementation of boolean-valued predicate functions."
authors = ["Nick Stevens <[email protected]>"]
homepage = "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.2"
predicates = "3.1.3"
```

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.9] - 2024-12-19

## [1.0.8] - 2024-07-25

## [1.0.7] - 2024-07-25
Expand Down Expand Up @@ -39,7 +41,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.8...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.9...HEAD
[1.0.9]: https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.8...predicates-core-v1.0.9
[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
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.8"
version = "1.0.9"
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.12] - 2024-12-19

## [1.0.11] - 2024-07-25

## [1.0.10] - 2024-07-25
Expand Down Expand Up @@ -43,7 +45,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.11...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.12...HEAD
[1.0.12]: https://github.com/assert-rs/predicates-rs/compare/predicates-tree-v1.0.11...predicates-tree-v1.0.12
[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
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.11"
version = "1.0.12"
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.2"
//! predicates = "3.1.3"
//! ```
//!
//! A [prelude] is available to bring in all extension traits as well as providing
Expand Down

0 comments on commit 40045bb

Please sign in to comment.