diff --git a/CHANGELOG.md b/CHANGELOG.md index c9d68a1..867ef5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [3.0.2] - 2023-03-24 + ### Fixes - Respect `follow_links` when checking whether a path is backed by a file @@ -217,7 +219,8 @@ Update MSRV to 1.60 - Basic README -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.0.1...HEAD +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/v3.0.2...HEAD +[3.0.2]: https://github.com/assert-rs/predicates-rs/compare/v3.0.1...v3.0.2 [3.0.1]: https://github.com/assert-rs/predicates-rs/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/assert-rs/predicates-rs/compare/v2.1.5...v3.0.0 [2.1.5]: https://github.com/assert-rs/predicates-rs/compare/v2.1.4...v2.1.5 diff --git a/Cargo.toml b/Cargo.toml index be5162c..079eda1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ include = [ [package] name = "predicates" -version = "3.0.1" +version = "3.0.2" description = "An implementation of boolean-valued predicate functions." authors = ["Nick Stevens "] repository = "https://github.com/assert-rs/predicates-rs" diff --git a/README.md b/README.md index db5515a..2debcab 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -predicates = "3.0.1" +predicates = "3.0.2" ``` Next, add this to your crate: diff --git a/src/lib.rs b/src/lib.rs index f6eb9bc..0d46fc4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ //! //! ```toml //! [dependencies] -//! predicates = "3.0.1" +//! predicates = "3.0.2" //! ``` //! //! A [prelude] is available to bring in all extension traits as well as providing