Skip to content

Commit 8d428b2

Browse files
committed
core: prepare to release v0.1.18
# 0.1.18 (April 30, 2010) ### Added - `Subscriber` impl for `Box<dyn Subscriber + Send + Sync + 'static>` ([#1358]) - `Subscriber` impl for `Arc<dyn Subscriber + Send + Sync + 'static>` ([#1374]) - Symmetric `From` impls for existing `Into` impls on `Current` and `Option<Id>` ([#1335]) - `Attributes::fields` accessor that returns the set of fields defined on a span's `Attributes` ([#1331]) Thanks to @Folyd for contributing to this release! [#1358]: #1358 [#1374]: #1374 [#1335]: #1335 [#1331]: #1331
1 parent 848ee2d commit 8d428b2

File tree

4 files changed

+35
-16
lines changed

4 files changed

+35
-16
lines changed

tracing-core/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 0.1.18 (April 30, 2010)
2+
3+
### Added
4+
5+
- `Subscriber` impl for `Box<dyn Subscriber + Send + Sync + 'static>` ([#1358])
6+
- `Subscriber` impl for `Arc<dyn Subscriber + Send + Sync + 'static>` ([#1374])
7+
- Symmetric `From` impls for existing `Into` impls on `Current` and `Option<Id>`
8+
([#1335])
9+
- `Attributes::fields` accessor that returns the set of fields defined on a
10+
span's `Attributes` ([#1331])
11+
12+
13+
Thanks to @Folyd for contributing to this release!
14+
15+
[#1358]: https://github.com/tokio-rs/tracing/pull/1358
16+
[#1374]: https://github.com/tokio-rs/tracing/pull/1374
17+
[#1335]: https://github.com/tokio-rs/tracing/pull/1335
18+
[#1331]: https://github.com/tokio-rs/tracing/pull/1331
19+
120
# 0.1.17 (September 28, 2020)
221

322
### Fixed

tracing-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.17"
11+
version = "0.1.18"
1212
authors = ["Tokio Contributors <[email protected]>"]
1313
license = "MIT"
1414
readme = "README.md"

tracing-core/README.md

Lines changed: 13 additions & 13 deletions
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.17
19+
[crates-url]: https://crates.io/crates/tracing-core/0.1.18
2020
[docs-badge]: https://docs.rs/tracing-core/badge.svg
21-
[docs-url]: https://docs.rs/tracing-core/0.1.17
21+
[docs-url]: https://docs.rs/tracing-core/0.1.18
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.17", default-features = false }
82+
tracing-core = { version = "0.1.18", 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.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
88+
[`span::Id`]: https://docs.rs/tracing-core/0.1.18/tracing_core/span/struct.Id.html
89+
[`Event`]: https://docs.rs/tracing-core/0.1.18/tracing_core/event/struct.Event.html
90+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.18/tracing_core/subscriber/trait.Subscriber.html
91+
[`Metadata`]: https://docs.rs/tracing-core/0.1.18/tracing_core/metadata/struct.Metadata.html
92+
[`Callsite`]: https://docs.rs/tracing-core/0.1.18/tracing_core/callsite/trait.Callsite.html
93+
[`Field`]: https://docs.rs/tracing-core/0.1.18/tracing_core/field/struct.Field.html
94+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.18/tracing_core/field/struct.FieldSet.html
95+
[`Value`]: https://docs.rs/tracing-core/0.1.18/tracing_core/field/trait.Value.html
96+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.18/tracing_core/field/struct.ValueSet.html
97+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.18/tracing_core/dispatcher/struct.Dispatch.html
9898

9999
## Supported Rust Versions
100100

tracing-core/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//!
5454
//! ```toml
5555
//! [dependencies]
56-
//! tracing-core = { version = "0.1.17", default-features = false }
56+
//! tracing-core = { version = "0.1.18", 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.17")]
88+
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.18")]
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)