Skip to content

Commit

Permalink
core: prepare to release version 0.1.6 (#343)
Browse files Browse the repository at this point in the history
Added:

- Internal APIs to support performance optimizations (#326)

Fixed:

- Clarified wording in `field::display` documentation (#340)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Sep 12, 2019
1 parent 4c2b604 commit 930bd73
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 18 deletions.
12 changes: 11 additions & 1 deletion 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

Expand Down
4 changes: 2 additions & 2 deletions tracing-core/Cargo.toml
Expand Up @@ -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 <team@tokio.rs>"]
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.
"""
Expand Down
26 changes: 13 additions & 13 deletions tracing-core/README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions 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))]

Expand Down Expand Up @@ -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`.
//!
Expand Down

0 comments on commit 930bd73

Please sign in to comment.