mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-01 23:10:31 +00:00
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:
parent
e5994dfff1
commit
ebacde012f
@ -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)
|
||||
|
||||
### Added
|
||||
|
@ -8,13 +8,13 @@ name = "tracing-core"
|
||||
# - README.md
|
||||
# - Update CHANGELOG.md.
|
||||
# - Create "v0.1.x" git tag.
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
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.1/tracing_core"
|
||||
documentation = "https://docs.rs/tracing-core/0.1.2/tracing_core"
|
||||
description = """
|
||||
Core primitives for application-level tracing.
|
||||
"""
|
||||
|
@ -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.
|
||||
|
||||
[`tracing`]: ../tracing
|
||||
[`Span`]: https://docs.rs/tracing-core/0.1.1/tracing_core/span/struct.Span.html
|
||||
[`Event`]: https://docs.rs/tracing-core/0.1.1/tracing_core/event/struct.Event.html
|
||||
[`Subscriber`]: https://docs.rs/tracing-core/0.1.1/tracing_core/subscriber/trait.Subscriber.html
|
||||
[`Metadata`]: https://docs.rs/tracing-core/0.1.1/tracing_core/metadata/struct.Metadata.html
|
||||
[`Callsite`]: https://docs.rs/tracing-core/0.1.1/tracing_core/callsite/trait.Callsite.html
|
||||
[`Field`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/struct.Field.html
|
||||
[`FieldSet`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/struct.FieldSet.html
|
||||
[`Value`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/trait.Value.html
|
||||
[`ValueSet`]: https://docs.rs/tracing-core/0.1.1/tracing_core/field/struct.ValueSet.html
|
||||
[`Dispatch`]: https://docs.rs/tracing-core/0.1.1/tracing_core/dispatcher/struct.Dispatch.html
|
||||
[`Span`]: https://docs.rs/tracing-core/0.1.2/tracing_core/span/struct.Span.html
|
||||
[`Event`]: https://docs.rs/tracing-core/0.1.2/tracing_core/event/struct.Event.html
|
||||
[`Subscriber`]: https://docs.rs/tracing-core/0.1.2/tracing_core/subscriber/trait.Subscriber.html
|
||||
[`Metadata`]: https://docs.rs/tracing-core/0.1.2/tracing_core/metadata/struct.Metadata.html
|
||||
[`Callsite`]: https://docs.rs/tracing-core/0.1.2/tracing_core/callsite/trait.Callsite.html
|
||||
[`Field`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/struct.Field.html
|
||||
[`FieldSet`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/struct.FieldSet.html
|
||||
[`Value`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/trait.Value.html
|
||||
[`ValueSet`]: https://docs.rs/tracing-core/0.1.2/tracing_core/field/struct.ValueSet.html
|
||||
[`Dispatch`]: https://docs.rs/tracing-core/0.1.2/tracing_core/dispatcher/struct.Dispatch.html
|
||||
|
||||
## License
|
||||
|
||||
|
@ -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)]
|
||||
#![cfg_attr(test, deny(warnings))]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user