Skip to content

Commit cdaf661

Browse files
authored
chore: prepare tracing-mock 0.1.0-beta.2 (#3422)
# 0.1.0-beta.2 (November 26, 2025) ### Added - Add `on_register_dispatch` expectation for subscriber and layer mocks ([#3415]) - Add doctests for `on_register_dispatch` negative cases ([#3416]) ### Changed - `tracing`: updated to 0.1.42 ([#3418]) [#3415]: https://github.com/tokio-rs/tracing/pull/#3415 [#3416]: https://github.com/tokio-rs/tracing/pull/#3416 [#3418]: https://github.com/tokio-rs/tracing/pull/#3418
1 parent a164fd3 commit cdaf661

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

tracing-mock/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 0.1.0-beta.2 (November 26, 2025)
2+
3+
### Added
4+
5+
- Add `on_register_dispatch` expectation for subscriber and layer mocks ([#3415])
6+
- Add doctests for `on_register_dispatch` negative cases ([#3416])
7+
8+
### Changed
9+
10+
- `tracing`: updated to 0.1.42 ([#3418])
11+
12+
[#3415]: https://github.com/tokio-rs/tracing/pull/#3415
13+
[#3416]: https://github.com/tokio-rs/tracing/pull/#3416
14+
[#3418]: https://github.com/tokio-rs/tracing/pull/#3418
15+
116
# 0.1.0-beta.1 (November 29, 2024)
217

318
[ [crates.io][crate-0.1.0-beta.1] ] | [ [docs.rs][docs-0.1.0-beta.1] ]

tracing-mock/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
## BIG SCARY NOTE
2-
# This Cargo.toml does not match the repo conventions YET
3-
# Before releasing to crates.io: make it so!
4-
51
[package]
62
name = "tracing-mock"
7-
version = "0.1.0-beta.1"
3+
version = "0.1.0-beta.2"
84
authors = [
95
"Eliza Weisman <eliza@buoyant.io>",
106
"Hayden Stainsby <hds@caffeineconcepts.com>",

tracing-mock/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Utilities for testing [`tracing`] and crates that uses it.
1616
[Documentation][docs-v0.2.x-url] | [Chat][discord-url]
1717

1818
[crates-badge]: https://img.shields.io/crates/v/tracing-mock.svg
19-
[crates-url]: https://crates.io/crates/tracing-mock
19+
[crates-url]: https://crates.io/crates/tracing-mock/0.1.0-beta.2
2020
[docs-badge]: https://docs.rs/tracing-mock/badge.svg
21-
[docs-url]: https://docs.rs/tracing-mock/latest
21+
[docs-url]: https://docs.rs/tracing-mock/0.1.0-beta.2
2222
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
2323
[docs-v0.2.x-url]: https://tracing.rs/tracing_mock
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -57,14 +57,14 @@ To do so, add the following to `Cargo.toml`:
5757

5858
```toml
5959
[dependencies]
60-
tracing-mock = "= 0.1.0-beta.1"
60+
tracing-mock = "= 0.1.0-beta.2"
6161
```
6262

6363
[tracing-spans]: https://docs.rs/tracing/0.1/tracing/#spans
6464
[tracing-events]: https://docs.rs/tracing/0.1/tracing/#events
6565
[tracing-subscriber]: https://docs.rs/tracing/0.1/tracing/trait.Subscriber.html
66-
[mock-subscriber-mod]: https://docs.rs/tracing-mock/0.1.0-beta.1/tracing_mock/subscriber/index.html
67-
[`MockSubscriber`]: https://docs.rs/tracing-mock/0.1.0-beta.1/tracing_mock/subscriber/struct.MockSubscriber.html
66+
[mock-subscriber-mod]: https://docs.rs/tracing-mock/0.1.0-beta.2/tracing_mock/subscriber/index.html
67+
[`MockSubscriber`]: https://docs.rs/tracing-mock/0.1.0-beta.2/tracing_mock/subscriber/struct.MockSubscriber.html
6868

6969
## Examples
7070

0 commit comments

Comments
 (0)