Skip to content

Commit fe9a847

Browse files
hawkwkaffarell
authored andcommitted
core: prepare to release v0.1.29 (tokio-rs#2256)
# 0.1.29 (July 29, 2022) This release of `tracing-core` adds `PartialEq` and `Eq` implementations for metadata types, and improves error messages when setting the global default subscriber fails. ### Added - `PartialEq` and `Eq` implementations for `Metadata` ([tokio-rs#2229]) - `PartialEq` and `Eq` implementations for `FieldSet` ([tokio-rs#2229]) ### Fixed - Fixed unhelpful `fmt::Debug` output for `dispatcher::SetGlobalDefaultError` ([tokio-rs#2250]) - Fixed compilation with `-Z minimal-versions` ([tokio-rs#2246]) Thanks to @jswrenn and @CAD97 for contributing to this release! [tokio-rs#2229]: tokio-rs#2229 [tokio-rs#2246]: tokio-rs#2246 [tokio-rs#2250]: tokio-rs#2250
1 parent 64f31fa commit fe9a847

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

tracing-core/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 0.1.29 (July 29, 2022)
2+
3+
This release of `tracing-core` adds `PartialEq` and `Eq` implementations for
4+
metadata types, and improves error messages when setting the global default
5+
subscriber fails.
6+
7+
### Added
8+
9+
- `PartialEq` and `Eq` implementations for `Metadata` ([#2229])
10+
- `PartialEq` and `Eq` implementations for `FieldSet` ([#2229])
11+
12+
### Fixed
13+
14+
- Fixed unhelpful `fmt::Debug` output for `dispatcher::SetGlobalDefaultError`
15+
([#2250])
16+
- Fixed compilation with `-Z minimal-versions` ([#2246])
17+
18+
Thanks to @jswrenn and @CAD97 for contributing to this release!
19+
20+
[#2229]: https://github.com/tokio-rs/tracing/pull/2229
21+
[#2246]: https://github.com/tokio-rs/tracing/pull/2246
22+
[#2250]: https://github.com/tokio-rs/tracing/pull/2250
23+
124
# 0.1.28 (June 23, 2022)
225

326
This release of `tracing-core` adds new `Value` implementations, including one

tracing-core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Core primitives for application-level tracing.
1616
[Documentation][docs-url] | [Chat][discord-url]
1717

1818
[crates-badge]: https://img.shields.io/crates/v/tracing-core.svg
19-
[crates-url]: https://crates.io/crates/tracing-core/0.1.28
19+
[crates-url]: https://crates.io/crates/tracing-core/0.1.29
2020
[docs-badge]: https://docs.rs/tracing-core/badge.svg
21-
[docs-url]: https://docs.rs/tracing-core/0.1.28
21+
[docs-url]: https://docs.rs/tracing-core/0.1.29
2222
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2323
[docs-master-url]: https://tracing-rs.netlify.com/tracing_core
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -79,7 +79,7 @@ The following crate feature flags are available:
7979

8080
```toml
8181
[dependencies]
82-
tracing-core = { version = "0.1.28", default-features = false }
82+
tracing-core = { version = "0.1.29", default-features = false }
8383
```
8484

8585
**Note**:`tracing-core`'s `no_std` support requires `liballoc`.

0 commit comments

Comments
 (0)