Skip to content

Commit 17237a3

Browse files
committed
chore: prepare release 0.12.0
1 parent fa588ee commit 17237a3

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Common Changelog](https://common-changelog.org/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.12.0 - 2026-01-10
9+
10+
_Asserting some elements in a collection or an iterator_
11+
12+
### Added
13+
14+
* verify that at least one element of an iterator or collection satisfies assertions
15+
[(PR #73)](https://github.com/innoave/asserting/pull/73)
16+
* assert some elements of an iterator against a predicate
17+
[(PR #71)](https://github.com/innoave/asserting/pull/71)
18+
19+
### Changed
20+
21+
* **Breaking:** rename method `each_item()` to `each_element()`
22+
[(PR #72)](https://github.com/innoave/asserting/pull/72)
23+
824
## 0.11.0 - 2025-12-27
925

1026
_Pick elements of collections or iterators for assertion_

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asserting"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["haraldmaida"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ require std can still be added.
8282

8383
```toml
8484
[dev-dependencies]
85-
asserting = { version = "0.11", default-features = false, features = ["colored", "float-cmp", "regex"] }
85+
asserting = { version = "0.12", default-features = false, features = ["colored", "float-cmp", "regex"] }
8686
```
8787

8888
An allocator is still needed for no-std.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@
705705
//! [`named()`]: spec::Spec::named
706706
//! [`located_at()`]: spec::Spec::located_at
707707
708-
#![doc(html_root_url = "https://docs.rs/asserting/0.11.0")]
708+
#![doc(html_root_url = "https://docs.rs/asserting/0.12.0")]
709709
#![cfg_attr(not(feature = "std"), no_std)]
710710
// Render feature requirements in docs.rs
711711
#![cfg_attr(docsrs, feature(doc_cfg))]

0 commit comments

Comments
 (0)