Skip to content

Commit 182684e

Browse files
authored
core: prepare to release 0.1.17 (tokio-rs#996)
### Fixed - Incorrect inlining of `Event::dispatch` and `Event::child_of`, which could result in `dispatcher::get_default` being inlined at the callsite (tokio-rs#994) ### Added - `Copy` implementations for `Level` and `LevelFilter` (tokio-rs#992) Thanks to new contributors @jyn514 and @TaKO8Ki for contributing to this release! Signed-off-by: Eliza Weisman <eliza@buoyant.io>
1 parent fa4fece commit 182684e

File tree

3 files changed

+32
-15
lines changed

3 files changed

+32
-15
lines changed

tracing-core/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 0.1.17 (September 28, 2020)
2+
3+
### Fixed
4+
5+
- Incorrect inlining of `Event::dispatch` and `Event::child_of`, which could
6+
result in `dispatcher::get_default` being inlined at the callsite ([#994])
7+
8+
### Added
9+
10+
- `Copy` implementations for `Level` and `LevelFilter` ([#992])
11+
12+
Thanks to new contributors @jyn514 and @TaKO8Ki for contributing to this
13+
release!
14+
15+
[#994]: https://github.com/tokio-rs/tracing/pull/994
16+
[#992]: https://github.com/tokio-rs/tracing/pull/992
17+
118
# 0.1.16 (September 8, 2020)
219

320
### Fixed

tracing-core/README.md

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

1818
[crates-badge]: https://img.shields.io/crates/v/tracing-core.svg
19-
[crates-url]: https://crates.io/crates/tracing-core/0.1.16
19+
[crates-url]: https://crates.io/crates/tracing-core/0.1.17
2020
[docs-badge]: https://docs.rs/tracing-core/badge.svg
21-
[docs-url]: https://docs.rs/tracing-core/0.1.16
21+
[docs-url]: https://docs.rs/tracing-core/0.1.17
2222
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2323
[docs-master-url]: https://tracing-rs.netlify.com/tracing_core
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -79,22 +79,22 @@ The following crate feature flags are available:
7979

8080
```toml
8181
[dependencies]
82-
tracing-core = { version = "0.1.16", default-features = false }
82+
tracing-core = { version = "0.1.17", default-features = false }
8383
```
8484

8585
**Note**:`tracing-core`'s `no_std` support requires `liballoc`.
8686

8787
[`tracing`]: ../tracing
88-
[`span::Id`]: https://docs.rs/tracing-core/0.1.16/tracing_core/span/struct.Id.html
89-
[`Event`]: https://docs.rs/tracing-core/0.1.16/tracing_core/event/struct.Event.html
90-
[`Subscriber`]: https://docs.rs/tracing-core/0.1.16/tracing_core/subscriber/trait.Subscriber.html
91-
[`Metadata`]: https://docs.rs/tracing-core/0.1.16/tracing_core/metadata/struct.Metadata.html
92-
[`Callsite`]: https://docs.rs/tracing-core/0.1.16/tracing_core/callsite/trait.Callsite.html
93-
[`Field`]: https://docs.rs/tracing-core/0.1.16/tracing_core/field/struct.Field.html
94-
[`FieldSet`]: https://docs.rs/tracing-core/0.1.16/tracing_core/field/struct.FieldSet.html
95-
[`Value`]: https://docs.rs/tracing-core/0.1.16/tracing_core/field/trait.Value.html
96-
[`ValueSet`]: https://docs.rs/tracing-core/0.1.16/tracing_core/field/struct.ValueSet.html
97-
[`Dispatch`]: https://docs.rs/tracing-core/0.1.16/tracing_core/dispatcher/struct.Dispatch.html
88+
[`span::Id`]: https://docs.rs/tracing-core/0.1.17/tracing_core/span/struct.Id.html
89+
[`Event`]: https://docs.rs/tracing-core/0.1.17/tracing_core/event/struct.Event.html
90+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.17/tracing_core/subscriber/trait.Subscriber.html
91+
[`Metadata`]: https://docs.rs/tracing-core/0.1.17/tracing_core/metadata/struct.Metadata.html
92+
[`Callsite`]: https://docs.rs/tracing-core/0.1.17/tracing_core/callsite/trait.Callsite.html
93+
[`Field`]: https://docs.rs/tracing-core/0.1.17/tracing_core/field/struct.Field.html
94+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.17/tracing_core/field/struct.FieldSet.html
95+
[`Value`]: https://docs.rs/tracing-core/0.1.17/tracing_core/field/trait.Value.html
96+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.17/tracing_core/field/struct.ValueSet.html
97+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.17/tracing_core/dispatcher/struct.Dispatch.html
9898

9999
## Supported Rust Versions
100100

tracing-core/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//!
5454
//! ```toml
5555
//! [dependencies]
56-
//! tracing-core = { version = "0.1.16", default-features = false }
56+
//! tracing-core = { version = "0.1.17", default-features = false }
5757
//! ```
5858
//!
5959
//! **Note**:`tracing-core`'s `no_std` support requires `liballoc`.
@@ -85,7 +85,7 @@
8585
//! [`Dispatch`]: dispatcher/struct.Dispatch.html
8686
//! [`tokio-rs/tracing`]: https://github.com/tokio-rs/tracing
8787
//! [`tracing`]: https://crates.io/crates/tracing
88-
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.16")]
88+
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.17")]
8989
#![doc(
9090
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
9191
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)