Skip to content

Commit 08d9070

Browse files
committed
Update changelog, update predicate guide
1 parent 4a1fcd8 commit 08d9070

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
### Added
11+
12+
- Add `str::contains_all` function
13+
1014
## [3.0.3] - 2023-04-13
1115

1216
### Internal

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@
143143
//! - [`predicate::str::ends_with`]: Specified string must end with the given needle.
144144
//! - [`predicate::str::contains`]: Specified string must contain the given needle.
145145
//! - [`predicate::str::contains(...).count`]: Required number of times the needle must show up.
146+
//! - [`predicate::str::contains_all`]: Specified string must contain all given needles.
146147
//! - [`predicate::str::is_match`]: Specified string must match the given regex.
147148
//! - [`predicate::str::is_match(...).count`]: Required number of times the match must show up.
148149
//! - [`str_pred.trim`]: Trim whitespace before passing it to `str_pred`.
@@ -188,6 +189,7 @@
188189
//! [`predicate::path::missing`]: prelude::predicate::path::missing()
189190
//! [`predicate::str::contains(...).count`]: str::ContainsPredicate::count()
190191
//! [`predicate::str::contains`]: prelude::predicate::str::contains()
192+
//! [`predicate::str::contains_all`]: prelude::predicate::str::contains_all()
191193
//! [`predicate::str::diff`]: prelude::predicate::str::diff()
192194
//! [`predicate::str::ends_with`]: prelude::predicate::str::ends_with()
193195
//! [`predicate::str::is_empty`]: prelude::predicate::str::is_empty()

0 commit comments

Comments
 (0)