Skip to content

Commit d7d561f

Browse files
authored
core: prepare to release v0.1.8 (#486)
Added - `Default` impl for `Dispatch` (#411) Fixed - Removed duplicate `lazy_static` dependencies (#424) - Fixed no-std dependencies being enabled even when `std` feature flag is set (#424) - Broken link to `Metadata` in `Event` docs (#461) Signed-off-by: Eliza Weisman <[email protected]>
1 parent 7856483 commit d7d561f

File tree

3 files changed

+39
-15
lines changed

3 files changed

+39
-15
lines changed

tracing-core/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# 0.1.8 (December 20, 2019)
2+
3+
### Added
4+
5+
- `Default` impl for `Dispatch` (#411)
6+
7+
### Fixed
8+
9+
- Removed duplicate `lazy_static` dependencies (#424)
10+
- Fixed no-std dependencies being enabled even when `std` feature flag is set
11+
(#424)
12+
- Broken link to `Metadata` in `Event` docs (#461)
13+
14+
# 0.1.7 (October 18, 2019)
15+
16+
### Added
17+
18+
- Added `dispatcher::set_default` API which returns a drop guard (#388)
19+
20+
### Fixed
21+
22+
- Added missing `Value` impl for `u8` (#392)
23+
- Broken links in docs.
24+
125
# 0.1.7 (October 18, 2019)
226

327
### Added

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.7
15+
[crates-url]: https://crates.io/crates/tracing-core/0.1.8
1616
[docs-badge]: https://docs.rs/tracing-core/badge.svg
17-
[docs-url]: https://docs.rs/tracing-core/0.1.7
17+
[docs-url]: https://docs.rs/tracing-core/0.1.8
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.7", default-features = false }
74+
tracing-core = { version = "0.1.8", 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.7/tracing_core/span/struct.Id.html
83-
[`Event`]: https://docs.rs/tracing-core/0.1.7/tracing_core/event/struct.Event.html
84-
[`Subscriber`]: https://docs.rs/tracing-core/0.1.7/tracing_core/subscriber/trait.Subscriber.html
85-
[`Metadata`]: https://docs.rs/tracing-core/0.1.7/tracing_core/metadata/struct.Metadata.html
86-
[`Callsite`]: https://docs.rs/tracing-core/0.1.7/tracing_core/callsite/trait.Callsite.html
87-
[`Field`]: https://docs.rs/tracing-core/0.1.7/tracing_core/field/struct.Field.html
88-
[`FieldSet`]: https://docs.rs/tracing-core/0.1.7/tracing_core/field/struct.FieldSet.html
89-
[`Value`]: https://docs.rs/tracing-core/0.1.7/tracing_core/field/trait.Value.html
90-
[`ValueSet`]: https://docs.rs/tracing-core/0.1.7/tracing_core/field/struct.ValueSet.html
91-
[`Dispatch`]: https://docs.rs/tracing-core/0.1.7/tracing_core/dispatcher/struct.Dispatch.html
82+
[`span::Id`]: https://docs.rs/tracing-core/0.1.8/tracing_core/span/struct.Id.html
83+
[`Event`]: https://docs.rs/tracing-core/0.1.8/tracing_core/event/struct.Event.html
84+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.8/tracing_core/subscriber/trait.Subscriber.html
85+
[`Metadata`]: https://docs.rs/tracing-core/0.1.8/tracing_core/metadata/struct.Metadata.html
86+
[`Callsite`]: https://docs.rs/tracing-core/0.1.8/tracing_core/callsite/trait.Callsite.html
87+
[`Field`]: https://docs.rs/tracing-core/0.1.8/tracing_core/field/struct.Field.html
88+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.8/tracing_core/field/struct.FieldSet.html
89+
[`Value`]: https://docs.rs/tracing-core/0.1.8/tracing_core/field/trait.Value.html
90+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.8/tracing_core/field/struct.ValueSet.html
91+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.8/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.7", default-features = false }
52+
//! tracing-core = { version = "0.1.8", 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.7")]
71+
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.8")]
7272
#![cfg_attr(not(feature = "std"), no_std)]
7373
#![warn(
7474
missing_debug_implementations,

0 commit comments

Comments
 (0)