tracing: prepare to release v0.1.34 (#2076)

# 0.1.34 (April 14, 2022)

This release includes bug fixes for the "log" support feature and for
the use of both scoped and global default dispatchers in the same
program.

### Fixed

- Failure to use the global default dispatcher when a thread sets a
  local default dispatcher before the global default is set ([#2065])
- **log**: Compilation errors due to `async` block/fn futures becoming
  `!Send` when the "log" feature flag is enabled ([#2073])
- Broken links in documentation ([#2068])

Thanks to @ben0x539 for contributing to this release!

[#2065]: https://github.com/tokio-rs/tracing/pull/2065
[#2073]: https://github.com/tokio-rs/tracing/pull/2073
[#2068]: https://github.com/tokio-rs/tracing/pull/2068
This commit is contained in:
Eliza Weisman 2022-04-14 15:28:32 -07:00
parent cb294a9958
commit 4f1e46306d
No known key found for this signature in database
GPG Key ID: F9C1A595C3814436
4 changed files with 26 additions and 7 deletions

View File

@ -1,3 +1,22 @@
# 0.1.34 (April 14, 2022)
This release includes bug fixes for the "log" support feature and for the use of
both scoped and global default dispatchers in the same program.
### Fixed
- Failure to use the global default dispatcher when a thread sets a local
default dispatcher before the global default is set ([#2065])
- **log**: Compilation errors due to `async` block/fn futures becoming `!Send`
when the "log" feature flag is enabled ([#2073])
- Broken links in documentation ([#2068])
Thanks to @ben0x539 for contributing to this release!
[#2065]: https://github.com/tokio-rs/tracing/pull/2065
[#2073]: https://github.com/tokio-rs/tracing/pull/2073
[#2068]: https://github.com/tokio-rs/tracing/pull/2068
# 0.1.33 (April 9, 2022) # 0.1.33 (April 9, 2022)
This release adds new `span_enabled!` and `event_enabled!` variants of the This release adds new `span_enabled!` and `event_enabled!` variants of the

View File

@ -8,7 +8,7 @@ name = "tracing"
# - README.md # - README.md
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.1.x" git tag # - Create "v0.1.x" git tag
version = "0.1.33" version = "0.1.34"
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"] authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"

View File

@ -16,9 +16,9 @@ Application-level tracing for Rust.
[Documentation][docs-url] | [Chat][discord-url] [Documentation][docs-url] | [Chat][discord-url]
[crates-badge]: https://img.shields.io/crates/v/tracing.svg [crates-badge]: https://img.shields.io/crates/v/tracing.svg
[crates-url]: https://crates.io/crates/tracing/0.1.33 [crates-url]: https://crates.io/crates/tracing/0.1.34
[docs-badge]: https://docs.rs/tracing/badge.svg [docs-badge]: https://docs.rs/tracing/badge.svg
[docs-url]: https://docs.rs/tracing/0.1.33 [docs-url]: https://docs.rs/tracing/0.1.34
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue [docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing [docs-master-url]: https://tracing-rs.netlify.com/tracing
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@ -250,7 +250,7 @@ my_future
is as long as the future's. is as long as the future's.
The second, and preferred, option is through the The second, and preferred, option is through the
[`#[instrument]`](https://docs.rs/tracing/0.1.33/tracing/attr.instrument.html) [`#[instrument]`](https://docs.rs/tracing/0.1.34/tracing/attr.instrument.html)
attribute: attribute:
```rust ```rust
@ -297,7 +297,7 @@ span.in_scope(|| {
// Dropping the span will close it, indicating that it has ended. // Dropping the span will close it, indicating that it has ended.
``` ```
The [`#[instrument]`](https://docs.rs/tracing/0.1.33/tracing/attr.instrument.html) attribute macro The [`#[instrument]`](https://docs.rs/tracing/0.1.34/tracing/attr.instrument.html) attribute macro
can reduce some of this boilerplate: can reduce some of this boilerplate:
```rust ```rust

View File

@ -812,7 +812,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! tracing = { version = "0.1.33", default-features = false } //! tracing = { version = "0.1.34", default-features = false }
//! ``` //! ```
//! //!
//! <pre class="ignore" style="white-space:normal;font:inherit;"> //! <pre class="ignore" style="white-space:normal;font:inherit;">
@ -895,7 +895,7 @@
//! [flags]: #crate-feature-flags //! [flags]: #crate-feature-flags
#![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg), deny(rustdoc::broken_intra_doc_links))] #![cfg_attr(docsrs, feature(doc_cfg), deny(rustdoc::broken_intra_doc_links))]
#![doc(html_root_url = "https://docs.rs/tracing/0.1.33")] #![doc(html_root_url = "https://docs.rs/tracing/0.1.34")]
#![doc( #![doc(
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png", html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/" issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"