Skip to content

Commit ed803e1

Browse files
authored
core: prepare to release 0.1.12 (#871)
### Added - `LevelFilter` type and `LevelFilter::current()` for returning the highest level that any subscriber will enable (#853) - `Subscriber::max_level_hint` optional trait method, for setting the value returned by `LevelFilter::current()` (#853) ### Fixed - **docs**: Removed outdated reference to a Tokio API that no longer exists (#857) Thanks to new contributor @dignati for contributing to this release! Signed-off-by: Eliza Weisman <[email protected]>
1 parent d01a5f9 commit ed803e1

File tree

4 files changed

+28
-21
lines changed

4 files changed

+28
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ attachment that `Future::instrument` does.
254254
[tracing-futures-docs]: https://docs.rs/tracing-futures
255255
[closing]: https://docs.rs/tracing/latest/tracing/span/index.html#closing-spans
256256
[`Future::instrument`]: https://docs.rs/tracing-futures/latest/tracing_futures/trait.Instrument.html#method.instrument
257-
[instrument]: https://docs.rs/tracing/0.1.11/tracing/attr.instrument.html
257+
[instrument]: https://docs.rs/tracing/0.1.12/tracing/attr.instrument.html
258258

259259

260260
## Getting Help

tracing-core/CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,33 @@
1-
# 0.1.12 (UNRELEASED)
1+
# 0.1.12 (July 31, 2020)
22

3-
## Added
3+
### Added
44

55
- `LevelFilter` type and `LevelFilter::current()` for returning the highest level
66
that any subscriber will enable (#853)
77
- `Subscriber::max_level_hint` optional trait method, for setting the value
88
returned by `LevelFilter::current()` (#853)
9+
10+
### Fixed
11+
12+
- **docs**: Removed outdated reference to a Tokio API that no longer exists
13+
(#857)
14+
15+
Thanks to new contributor @dignati for contributing to this release!
916

1017
# 0.1.11 (June 8, 2020)
1118

12-
## Changed
19+
### Changed
1320

1421
- Replaced use of `inner_local_macros` with `$crate::` (#729)
1522

16-
## Added
23+
### Added
1724

1825
- `must_use` warning to guards returned by `dispatcher::set_default` (#686)
1926
- `fmt::Debug` impl to `dyn Value`s (#696)
2027
- Functions to convert between `span::Id` and `NonZeroU64` (#770)
2128
- More obvious warnings in documentation (#769)
2229

23-
## Fixed
30+
### Fixed
2431

2532
- Compiler error when `tracing-core/std` feature is enabled but `tracing/std` is
2633
not (#760)

tracing-core/README.md

Lines changed: 13 additions & 13 deletions
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.11
15+
[crates-url]: https://crates.io/crates/tracing-core/0.1.12
1616
[docs-badge]: https://docs.rs/tracing-core/badge.svg
17-
[docs-url]: https://docs.rs/tracing-core/0.1.11
17+
[docs-url]: https://docs.rs/tracing-core/0.1.12
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.11", default-features = false }
74+
tracing-core = { version = "0.1.12", 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.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
82+
[`span::Id`]: https://docs.rs/tracing-core/0.1.12/tracing_core/span/struct.Id.html
83+
[`Event`]: https://docs.rs/tracing-core/0.1.12/tracing_core/event/struct.Event.html
84+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.12/tracing_core/subscriber/trait.Subscriber.html
85+
[`Metadata`]: https://docs.rs/tracing-core/0.1.12/tracing_core/metadata/struct.Metadata.html
86+
[`Callsite`]: https://docs.rs/tracing-core/0.1.12/tracing_core/callsite/trait.Callsite.html
87+
[`Field`]: https://docs.rs/tracing-core/0.1.12/tracing_core/field/struct.Field.html
88+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.12/tracing_core/field/struct.FieldSet.html
89+
[`Value`]: https://docs.rs/tracing-core/0.1.12/tracing_core/field/trait.Value.html
90+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.12/tracing_core/field/struct.ValueSet.html
91+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.12/tracing_core/dispatcher/struct.Dispatch.html
9292

9393
## License
9494

tracing-core/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
//!
5050
//! ```toml
5151
//! [dependencies]
52-
//! tracing-core = { version = "0.1.11", default-features = false }
52+
//! tracing-core = { version = "0.1.12", 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.11")]
71+
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.12")]
7272
#![doc(
7373
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo.svg",
7474
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)