Skip to content

Commit 9978c36

Browse files
authored
chore: prepare tracing-mock 0.1.0-beta.3 (#3429)
# 0.1.0-beta.3 (November 28, 2025) #### Important The previous release [0.1.0-beta.2] was yanked as it depended explicitly on [tracing-0.1.42], which was yanked due to a breaking change (see [#3424] for details). This release contains all the changes from the previous release, plus an update to the newer version of `tracing`. ### Changed - `tracing`: updated to 0.1.43 ([#3427]) [#3424]: #3424 [#3427]: #3427 [0.1.0-beta.2]: https://github.com/tokio-rs/tracing/releases/tag/tracing-mock-0.1.0-beta.2 [tracing-0.1.42]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42
1 parent cc44064 commit 9978c36

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
lines changed

tracing-mock/CHANGELOG.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# 0.1.0-beta.3 (November 28, 2025)
2+
3+
#### Important
4+
5+
The previous release [0.1.0-beta.2] was yanked as it depended explicitly on
6+
[tracing-0.1.42], which was yanked due to a breaking change (see [#3424] for
7+
details). This release contains all the changes from the previous release, plus
8+
an update to the newer version of `tracing`.
9+
10+
### Changed
11+
12+
- `tracing`: updated to 0.1.43 ([#3427])
13+
14+
[#3424]: https://github.com/tokio-rs/tracing/pull/3424
15+
[#3427]: https://github.com/tokio-rs/tracing/pull/3427
16+
[0.1.0-beta.2]: https://github.com/tokio-rs/tracing/releases/tag/tracing-mock-0.1.0-beta.2
17+
[tracing-0.1.42]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42
18+
119
# 0.1.0-beta.2 (November 26, 2025)
220

321
### Added
@@ -9,9 +27,9 @@
927

1028
- `tracing`: updated to 0.1.42 ([#3418])
1129

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
30+
[#3415]: https://github.com/tokio-rs/tracing/pull/3415
31+
[#3416]: https://github.com/tokio-rs/tracing/pull/3416
32+
[#3418]: https://github.com/tokio-rs/tracing/pull/3418
1533

1634
# 0.1.0-beta.1 (November 29, 2024)
1735

tracing-mock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-mock"
3-
version = "0.1.0-beta.2"
3+
version = "0.1.0-beta.3"
44
authors = [
55
"Eliza Weisman <eliza@buoyant.io>",
66
"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/0.1.0-beta.2
19+
[crates-url]: https://crates.io/crates/tracing-mock/0.1.0-beta.3
2020
[docs-badge]: https://docs.rs/tracing-mock/badge.svg
21-
[docs-url]: https://docs.rs/tracing-mock/0.1.0-beta.2
21+
[docs-url]: https://docs.rs/tracing-mock/0.1.0-beta.3
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.2"
60+
tracing-mock = "= 0.1.0-beta.3"
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.2/tracing_mock/subscriber/index.html
67-
[`MockSubscriber`]: https://docs.rs/tracing-mock/0.1.0-beta.2/tracing_mock/subscriber/struct.MockSubscriber.html
66+
[mock-subscriber-mod]: https://docs.rs/tracing-mock/0.1.0-beta.3/tracing_mock/subscriber/index.html
67+
[`MockSubscriber`]: https://docs.rs/tracing-mock/0.1.0-beta.3/tracing_mock/subscriber/struct.MockSubscriber.html
6868

6969
## Examples
7070

0 commit comments

Comments
 (0)