core: prepare to release 0.1.2 (#173)

# 0.1.2 (July 10, 2019)

### Deprecated

- `Subscriber::drop_span` in favor of new `Subscriber::try_close` (#168)

### Added

- `Into<Option<&Id>>`, `Into<Option<Id>>`, and
  `Into<Option<&'static Metadata<'static>>>` impls for `span::Current` (#170)
- `Subscriber::try_close` method (#153)
- Improved documentation for `dispatcher` (#171)

* core: update changelog for 0.1.2
* core: update version to 0.1.2

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-07-10 16:25:18 -07:00 committed by GitHub
parent e5994dfff1
commit ebacde012f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 13 deletions

View File

@ -1,3 +1,16 @@
# 0.1.2 (July 10, 2019)
### Deprecated
- `Subscriber::drop_span` in favor of new `Subscriber::try_close` (#168)
### Added
- `Into<Option<&Id>>`, `Into<Option<Id>>`, and
`Into<Option<&'static Metadata<'static>>>` impls for `span::Current` (#170)
- `Subscriber::try_close` method (#153)
- Improved documentation for `dispatcher` (#171)
# 0.1.1 (July 6, 2019) # 0.1.1 (July 6, 2019)
### Added ### Added

View File

@ -8,13 +8,13 @@ name = "tracing-core"
# - 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.1" version = "0.1.2"
authors = ["Tokio Contributors <team@tokio.rs>"] authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"
repository = "https://github.com/tokio-rs/tracing" repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs" homepage = "https://tokio.rs"
documentation = "https://docs.rs/tracing-core/0.1.1/tracing_core" documentation = "https://docs.rs/tracing-core/0.1.2/tracing_core"
description = """ description = """
Core primitives for application-level tracing. Core primitives for application-level tracing.
""" """

View File

@ -52,16 +52,16 @@ API. However, this crate's API will change very infrequently, so it may be used
when dependencies must be very stable. when dependencies must be very stable.
[`tracing`]: ../tracing [`tracing`]: ../tracing
[`Span`]: https://docs.rs/tracing-core/0.1.1/tracing_core/span/struct.Span.html [`Span`]: https://docs.rs/tracing-core/0.1.2/tracing_core/span/struct.Span.html
[`Event`]: https://docs.rs/tracing-core/0.1.1/tracing_core/event/struct.Event.html [`Event`]: https://docs.rs/tracing-core/0.1.2/tracing_core/event/struct.Event.html
[`Subscriber`]: https://docs.rs/tracing-core/0.1.1/tracing_core/subscriber/trait.Subscriber.html [`Subscriber`]: https://docs.rs/tracing-core/0.1.2/tracing_core/subscriber/trait.Subscriber.html
[`Metadata`]: https://docs.rs/tracing-core/0.1.1/tracing_core/metadata/struct.Metadata.html [`Metadata`]: https://docs.rs/tracing-core/0.1.2/tracing_core/metadata/struct.Metadata.html
[`Callsite`]: https://docs.rs/tracing-core/0.1.1/tracing_core/callsite/trait.Callsite.html [`Callsite`]: https://docs.rs/tracing-core/0.1.2/tracing_core/callsite/trait.Callsite.html
[`Field`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/struct.Field.html [`Field`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/struct.Field.html
[`FieldSet`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/struct.FieldSet.html [`FieldSet`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/struct.FieldSet.html
[`Value`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/trait.Value.html [`Value`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/trait.Value.html
[`ValueSet`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/struct.ValueSet.html [`ValueSet`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/struct.ValueSet.html
[`Dispatch`]: https://docs.rs/tracing-core/0.1.1/tracing_core/dispatcher/struct.Dispatch.html [`Dispatch`]: https://docs.rs/tracing-core/0.1.2/tracing_core/dispatcher/struct.Dispatch.html
## License ## License

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.1")] #![doc(html_root_url = "https://docs.rs/tracing-core/0.1.2")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)] #![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))] #![cfg_attr(test, deny(warnings))]