From 642102ab81d2960b137041b17bae807b893357ca Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 12 Sep 2019 12:59:04 -0700 Subject: [PATCH] core: prepare to release version 0.1.6 Added: - Internal APIs to support performance optimizations (#326) Fixed: - Clarified wording in `field::display` documentation (#340) Signed-off-by: Eliza Weisman --- tracing-core/CHANGELOG.md | 12 +++++++++++- tracing-core/Cargo.toml | 4 ++-- tracing-core/README.md | 26 +++++++++++++------------- tracing-core/src/lib.rs | 4 ++-- 4 files changed, 28 insertions(+), 18 deletions(-) diff --git a/tracing-core/CHANGELOG.md b/tracing-core/CHANGELOG.md index fa7847ec28..f23bd4677a 100644 --- a/tracing-core/CHANGELOG.md +++ b/tracing-core/CHANGELOG.md @@ -1,4 +1,14 @@ -# 0.1.5 (August 16, 2019) +# 0.1.6 (September 12, 2019) + +### Added + +- Internal APIs to support performance optimizations (#326) + +### Fixed + +- Clarified wording in `field::display` documentation (#340) + +# 0.1.6 (August 16, 2019) ### Added diff --git a/tracing-core/Cargo.toml b/tracing-core/Cargo.toml index a274201dce..117afc50f0 100644 --- a/tracing-core/Cargo.toml +++ b/tracing-core/Cargo.toml @@ -8,13 +8,13 @@ name = "tracing-core" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.5" +version = "0.1.6" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" repository = "https://github.com/tokio-rs/tracing" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tracing-core/0.1.5/tracing_core" +documentation = "https://docs.rs/tracing-core/0.1.6/tracing_core" description = """ Core primitives for application-level tracing. """ diff --git a/tracing-core/README.md b/tracing-core/README.md index 3be3cff0dd..616b606a8d 100644 --- a/tracing-core/README.md +++ b/tracing-core/README.md @@ -13,9 +13,9 @@ Core primitives for application-level tracing. [Chat][gitter-url] [crates-badge]: https://img.shields.io/crates/v/tracing-core.svg -[crates-url]: https://crates.io/crates/tracing-core/0.1.5 +[crates-url]: https://crates.io/crates/tracing-core/0.1.6 [docs-badge]: https://docs.rs/tracing-core/badge.svg -[docs-url]: https://docs.rs/tracing-core/0.1.5 +[docs-url]: https://docs.rs/tracing-core/0.1.6 [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 @@ -71,22 +71,22 @@ The following crate feature flags are available: ```toml [dependencies] - tracing-core = { version = "0.1.5", default-features = false } + tracing-core = { version = "0.1.6", default-features = false } ``` **Note**:`tracing-core`'s `no_std` support requires `liballoc`. [`tracing`]: ../tracing -[`Span`]: https://docs.rs/tracing-core/0.1.5/tracing_core/span/struct.Span.html -[`Event`]: https://docs.rs/tracing-core/0.1.5/tracing_core/event/struct.Event.html -[`Subscriber`]: https://docs.rs/tracing-core/0.1.5/tracing_core/subscriber/trait.Subscriber.html -[`Metadata`]: https://docs.rs/tracing-core/0.1.5/tracing_core/metadata/struct.Metadata.html -[`Callsite`]: https://docs.rs/tracing-core/0.1.5/tracing_core/callsite/trait.Callsite.html -[`Field`]: https://docs.rs/tracing-core/0.1.5/tracing_core/field/struct.Field.html -[`FieldSet`]: https://docs.rs/tracing-core/0.1.5/tracing_core/field/struct.FieldSet.html -[`Value`]: https://docs.rs/tracing-core/0.1.5/tracing_core/field/trait.Value.html -[`ValueSet`]: https://docs.rs/tracing-core/0.1.5/tracing_core/field/struct.ValueSet.html -[`Dispatch`]: https://docs.rs/tracing-core/0.1.5/tracing_core/dispatcher/struct.Dispatch.html +[`Span`]: https://docs.rs/tracing-core/0.1.6/tracing_core/span/struct.Span.html +[`Event`]: https://docs.rs/tracing-core/0.1.6/tracing_core/event/struct.Event.html +[`Subscriber`]: https://docs.rs/tracing-core/0.1.6/tracing_core/subscriber/trait.Subscriber.html +[`Metadata`]: https://docs.rs/tracing-core/0.1.6/tracing_core/metadata/struct.Metadata.html +[`Callsite`]: https://docs.rs/tracing-core/0.1.6/tracing_core/callsite/trait.Callsite.html +[`Field`]: https://docs.rs/tracing-core/0.1.6/tracing_core/field/struct.Field.html +[`FieldSet`]: https://docs.rs/tracing-core/0.1.6/tracing_core/field/struct.FieldSet.html +[`Value`]: https://docs.rs/tracing-core/0.1.6/tracing_core/field/trait.Value.html +[`ValueSet`]: https://docs.rs/tracing-core/0.1.6/tracing_core/field/struct.ValueSet.html +[`Dispatch`]: https://docs.rs/tracing-core/0.1.6/tracing_core/dispatcher/struct.Dispatch.html ## License diff --git a/tracing-core/src/lib.rs b/tracing-core/src/lib.rs index 7c5e4de7b9..c7020d1e27 100644 --- a/tracing-core/src/lib.rs +++ b/tracing-core/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.5")] +#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.6")] #![deny(missing_debug_implementations, missing_docs, unreachable_pub)] #![cfg_attr(test, deny(warnings))] @@ -52,7 +52,7 @@ //! //! ```toml //! [dependencies] -//! tracing-core = { version = "0.1.5", default-features = false } +//! tracing-core = { version = "0.1.6", default-features = false } //! ``` //! **Note**:`tracing-core`'s `no_std` support requires `liballoc`. //!