Skip to content

Commit a0201ba

Browse files
committed
log: prepare to release v0.1.2
Added - Re-export the `log` crate so that users can ensure consistent versions ([#602]) - `AsLog` implementation for `tracing::LevelFilter` ([#1248]) - `AsTrace` implementation for `log::LevelFilter` ([#1248]) Fixed - **log-tracer**: Fixed `Log::enabled` implementation for `LogTracer` not calling `Subscriber::enabled` ([#1254]) - **log-tracer**: Fixed `Log::enabled` implementation for `LogTracer` not checking the max level hint ([#1247]) - Several documentation fixes ([#483], [#485], [#537], [#595], [#941], [#981]) [#483]: https://github.com/tokio-rs/tracing/pulls/483 [#485]: https://github.com/tokio-rs/tracing/pulls/485 [#537]: https://github.com/tokio-rs/tracing/pulls/537 [#595]: https://github.com/tokio-rs/tracing/pulls/595 [#605]: https://github.com/tokio-rs/tracing/pulls/604 [#941]: https://github.com/tokio-rs/tracing/pulls/941 [#1247]: https://github.com/tokio-rs/tracing/pulls/1247 [#1248]: https://github.com/tokio-rs/tracing/pulls/1248 [#1254]: https://github.com/tokio-rs/tracing/pulls/1254 Signed-off-by: Eliza Weisman <[email protected]>
1 parent 0cdd5e8 commit a0201ba

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

tracing-log/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# 0.1.2 (February 19th, 2020)
2+
3+
### Added
4+
5+
- Re-export the `log` crate so that users can ensure consistent versions ([#602])
6+
- `AsLog` implementation for `tracing::LevelFilter` ([#1248])
7+
- `AsTrace` implementation for `log::LevelFilter` ([#1248])
8+
9+
### Fixed
10+
11+
- **log-tracer**: Fixed `Log::enabled` implementation for `LogTracer` not
12+
calling `Subscriber::enabled` ([#1254])
13+
- **log-tracer**: Fixed `Log::enabled` implementation for `LogTracer` not
14+
checking the max level hint ([#1247])
15+
- Several documentation fixes ([#483], [#485], [#537], [#595], [#941], [#981])
16+
17+
[#483]: https://github.com/tokio-rs/tracing/pulls/483
18+
[#485]: https://github.com/tokio-rs/tracing/pulls/485
19+
[#537]: https://github.com/tokio-rs/tracing/pulls/537
20+
[#595]: https://github.com/tokio-rs/tracing/pulls/595
21+
[#605]: https://github.com/tokio-rs/tracing/pulls/604
22+
[#941]: https://github.com/tokio-rs/tracing/pulls/941
23+
[#1247]: https://github.com/tokio-rs/tracing/pulls/1247
24+
[#1248]: https://github.com/tokio-rs/tracing/pulls/1248
25+
[#1254]: https://github.com/tokio-rs/tracing/pulls/1254
26+
127
# 0.1.1 (October 29, 2019)
228

329
### Deprecated

tracing-log/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
//! [`Subscriber`]: https://docs.rs/tracing/latest/tracing/trait.Subscriber.html
106106
//! [`tracing::Event`]: https://docs.rs/tracing/latest/tracing/struct.Event.html
107107
//! [flags]: https://docs.rs/tracing/latest/tracing/#crate-feature-flags
108-
#![doc(html_root_url = "https://docs.rs/tracing-log/0.1.1")]
108+
#![doc(html_root_url = "https://docs.rs/tracing-log/0.1.2")]
109109
#![doc(
110110
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
111111
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)