Skip to content

Commit d5cf52a

Browse files
authored
core: prepare to release 0.1.11 (#788)
### Changed - Replaced use of `inner_local_macros` with `$crate::` (#729) ### Added - `must_use` warning to guards returned by `dispatcher::set_default` (#686) - `fmt::Debug` impl to `dyn Value`s (#696) - Functions to convert between `span::Id` and `NonZeroU64` (#770) - More obvious warnings in documentation (#769) ### Fixed - Compiler error when `tracing-core/std` feature is enabled but `tracing/std` is not (#760) - Clippy warning on vtable address comparison in `callsite::Identifier` (#749) - Documentation formatting issues (#715, #771) Thanks to @bkchr, @majecty, @taiki-e, @nagisa, and @nvzqz for contributing to this release!
1 parent 139d248 commit d5cf52a

File tree

5 files changed

+40
-17
lines changed

5 files changed

+40
-17
lines changed

tracing-core/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 0.1.11 (June 8, 2020)
2+
3+
## Changed
4+
5+
- Replaced use of `inner_local_macros` with `$crate::` (#729)
6+
7+
## Added
8+
9+
- `must_use` warning to guards returned by `dispatcher::set_default` (#686)
10+
- `fmt::Debug` impl to `dyn Value`s (#696)
11+
- Functions to convert between `span::Id` and `NonZeroU64` (#770)
12+
- More obvious warnings in documentation (#769)
13+
14+
## Fixed
15+
16+
- Compiler error when `tracing-core/std` feature is enabled but `tracing/std` is
17+
not (#760)
18+
- Clippy warning on vtable address comparison in `callsite::Identifier` (#749)
19+
- Documentation formatting issues (#715, #771)
20+
21+
Thanks to @bkchr, @majecty, @taiki-e, @nagisa, and @nvzqz for contributing to
22+
this release!
23+
124
# 0.1.10 (January 24, 2020)
225

326
### Added

tracing-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "tracing-core"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag.
11-
version = "0.1.10"
11+
version = "0.1.11"
1212
authors = ["Tokio Contributors <[email protected]>"]
1313
license = "MIT"
1414
readme = "README.md"

tracing-core/README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Core primitives for application-level tracing.
1212
[Documentation][docs-url] | [Chat][discord-url]
1313

1414
[crates-badge]: https://img.shields.io/crates/v/tracing-core.svg
15-
[crates-url]: https://crates.io/crates/tracing-core/0.1.10
15+
[crates-url]: https://crates.io/crates/tracing-core/0.1.11
1616
[docs-badge]: https://docs.rs/tracing-core/badge.svg
17-
[docs-url]: https://docs.rs/tracing-core/0.1.10
17+
[docs-url]: https://docs.rs/tracing-core/0.1.11
1818
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
1919
[docs-master-url]: https://tracing-rs.netlify.com/tracing_core
2020
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -71,24 +71,24 @@ The following crate feature flags are available:
7171

7272
```toml
7373
[dependencies]
74-
tracing-core = { version = "0.1.10", default-features = false }
74+
tracing-core = { version = "0.1.11", default-features = false }
7575
```
7676

7777
*Compiler support: requires rustc 1.39+*
7878

7979
**Note**:`tracing-core`'s `no_std` support requires `liballoc`.
8080

8181
[`tracing`]: ../tracing
82-
[`span::Id`]: https://docs.rs/tracing-core/0.1.10/tracing_core/span/struct.Id.html
83-
[`Event`]: https://docs.rs/tracing-core/0.1.10/tracing_core/event/struct.Event.html
84-
[`Subscriber`]: https://docs.rs/tracing-core/0.1.10/tracing_core/subscriber/trait.Subscriber.html
85-
[`Metadata`]: https://docs.rs/tracing-core/0.1.10/tracing_core/metadata/struct.Metadata.html
86-
[`Callsite`]: https://docs.rs/tracing-core/0.1.10/tracing_core/callsite/trait.Callsite.html
87-
[`Field`]: https://docs.rs/tracing-core/0.1.10/tracing_core/field/struct.Field.html
88-
[`FieldSet`]: https://docs.rs/tracing-core/0.1.10/tracing_core/field/struct.FieldSet.html
89-
[`Value`]: https://docs.rs/tracing-core/0.1.10/tracing_core/field/trait.Value.html
90-
[`ValueSet`]: https://docs.rs/tracing-core/0.1.10/tracing_core/field/struct.ValueSet.html
91-
[`Dispatch`]: https://docs.rs/tracing-core/0.1.10/tracing_core/dispatcher/struct.Dispatch.html
82+
[`span::Id`]: https://docs.rs/tracing-core/0.1.11/tracing_core/span/struct.Id.html
83+
[`Event`]: https://docs.rs/tracing-core/0.1.11/tracing_core/event/struct.Event.html
84+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.11/tracing_core/subscriber/trait.Subscriber.html
85+
[`Metadata`]: https://docs.rs/tracing-core/0.1.11/tracing_core/metadata/struct.Metadata.html
86+
[`Callsite`]: https://docs.rs/tracing-core/0.1.11/tracing_core/callsite/trait.Callsite.html
87+
[`Field`]: https://docs.rs/tracing-core/0.1.11/tracing_core/field/struct.Field.html
88+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.11/tracing_core/field/struct.FieldSet.html
89+
[`Value`]: https://docs.rs/tracing-core/0.1.11/tracing_core/field/trait.Value.html
90+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.11/tracing_core/field/struct.ValueSet.html
91+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.11/tracing_core/dispatcher/struct.Dispatch.html
9292

9393
## License
9494

tracing-core/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
//!
5050
//! ```toml
5151
//! [dependencies]
52-
//! tracing-core = { version = "0.1.10", default-features = false }
52+
//! tracing-core = { version = "0.1.11", default-features = false }
5353
//! ```
5454
//!
5555
//! *Compiler support: requires rustc 1.39+*
@@ -68,7 +68,7 @@
6868
//! [`Dispatch`]: dispatcher/struct.Dispatch.html
6969
//! [`tokio-rs/tracing`]: https://github.com/tokio-rs/tracing
7070
//! [`tracing`]: https://crates.io/crates/tracing
71-
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.10")]
71+
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.11")]
7272
#![cfg_attr(not(feature = "std"), no_std)]
7373
#![cfg_attr(docsrs, feature(doc_cfg))]
7474
#![warn(

tracing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ keywords = ["logging", "tracing", "metrics", "async"]
2727
edition = "2018"
2828

2929
[dependencies]
30-
tracing-core = { path = "../tracing-core", version = "0.1.10", default-features = false }
30+
tracing-core = { path = "../tracing-core", version = "0.1.11", default-features = false }
3131
log = { version = "0.4", optional = true }
3232
tracing-attributes = { path = "../tracing-attributes", version = "0.1.8", optional = true }
3333
cfg-if = "0.1.10"

0 commit comments

Comments
 (0)