Skip to content

Commit 5fc6f0a

Browse files
committed
chore: prepare release 0.13.0
1 parent 220d440 commit 5fc6f0a

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.13.0 - 2026-02-15
9+
10+
_Custom assertion methods without expectations_
11+
12+
### Added
13+
14+
* write custom assertion methods without the need to implement a custom expectation as well
15+
[(PR #74)](https://github.com/innoave/asserting/pull/74)
16+
817
## 0.12.0 - 2026-01-10
918

1019
_Asserting some elements in a collection or an iterator_

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.12.0"
3+
version = "0.13.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
@@ -83,7 +83,7 @@ require std can still be added.
8383

8484
```toml
8585
[dev-dependencies]
86-
asserting = { version = "0.12", default-features = false, features = ["colored", "float-cmp", "regex"] }
86+
asserting = { version = "0.13", default-features = false, features = ["colored", "float-cmp", "regex"] }
8787
```
8888

8989
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
@@ -757,7 +757,7 @@
757757
//! [`named()`]: spec::Spec::named
758758
//! [`located_at()`]: spec::Spec::located_at
759759
760-
#![doc(html_root_url = "https://docs.rs/asserting/0.12.0")]
760+
#![doc(html_root_url = "https://docs.rs/asserting/0.13.0")]
761761
#![cfg_attr(not(feature = "std"), no_std)]
762762
// Render feature requirements in docs.rs
763763
#![cfg_attr(docsrs, feature(doc_cfg))]

0 commit comments

Comments
 (0)