Skip to content

Commit

Permalink
core: prepare to release 0.1.20 (tokio-rs#1554)
Browse files Browse the repository at this point in the history
# 0.1.20 (September 12, 2021)

This release adds support for `f64` as one of the `tracing-core`
primitive field values, allowing floating-point values to be recorded as
typed values rather than with `fmt::Debug`. Additionally, it adds
`NoSubscriber`, a `Subscriber` implementation that does nothing.
### Added

- **subscriber**: `NoSubscriber`, a no-op `Subscriber` implementation
  ([tokio-rs#1549])
- **field**: Added `Visit::record_f64` and support for recording
  floating-point values ([tokio-rs#1507])

Thanks to new contributors @jsgf and @maxburke for contributing to this
release!

[tokio-rs#1549]: tokio-rs#1549
[tokio-rs#1507]: tokio-rs#1507
  • Loading branch information
hawkw authored and kaffarell committed May 22, 2024
1 parent 93e4f17 commit e448564
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions tracing-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# 0.1.20 (September 12, 2021)

This release adds support for `f64` as one of the `tracing-core`
primitive field values, allowing floating-point values to be recorded as
typed values rather than with `fmt::Debug`. Additionally, it adds
`NoSubscriber`, a `Subscriber` implementation that does nothing.

### Added

- **subscriber**: `NoSubscriber`, a no-op `Subscriber` implementation
([#1549])
- **field**: Added `Visit::record_f64` and support for recording
floating-point values ([#1507])

Thanks to new contributors @jsgf and @maxburke for contributing to this
release!

[#1549]: https://github.com/tokio-rs/tracing/pull/1549 [#1507]:
https://github.com/tokio-rs/tracing/pull/1507

# 0.1.19 (August 17, 2021)
### Added

Expand Down
6 changes: 3 additions & 3 deletions tracing-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Core primitives for application-level tracing.
[Documentation][docs-url] | [Chat][discord-url]

[crates-badge]: https://img.shields.io/crates/v/tracing-core.svg
[crates-url]: https://crates.io/crates/tracing-core/0.1.19
[crates-url]: https://crates.io/crates/tracing-core/0.1.20
[docs-badge]: https://docs.rs/tracing-core/badge.svg
[docs-url]: https://docs.rs/tracing-core/0.1.19
[docs-url]: https://docs.rs/tracing-core/0.1.20
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing_core
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
Expand Down Expand Up @@ -79,7 +79,7 @@ The following crate feature flags are available:

```toml
[dependencies]
tracing-core = { version = "0.1.19", default-features = false }
tracing-core = { version = "0.1.20", default-features = false }
```

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

0 comments on commit e448564

Please sign in to comment.