Skip to content

Commit cdbd122

Browse files
authored
log: prepare to release v0.1.3 (#2086)
# 0.1.3 (April 21st, 2022) ### Added - **log-tracer**: Added `LogTracer::with_interest_cache` to enable a limited form of per-record `Interest` caching for `log` records ([#1636]) ### Changed - Updated minimum supported Rust version (MSRV) to Rust 1.49.0 ([#1913]) ### Fixed - **log-tracer**: Fixed `LogTracer` not honoring `tracing` max level filters ([#1543]) - Broken links in documentation ([#2068], [#2077]) Thanks to @Millione, @teozkr, @koute, @Folyd, and @ben0x539 for contributing to this release! [#1636]: https://github.com/tokio-rs/tracing/pulls/1636 [#1913]: https://github.com/tokio-rs/tracing/pulls/1913 [#1543]: https://github.com/tokio-rs/tracing/pulls/1543 [#2068]: https://github.com/tokio-rs/tracing/pulls/2068 [#2077]: https://github.com/tokio-rs/tracing/pulls/2077 Fixes #1884 Fixes #1664
1 parent 63ce858 commit cdbd122

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

tracing-log/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# 0.1.3 (April 21st, 2022)
2+
3+
### Added
4+
5+
- **log-tracer**: Added `LogTracer::with_interest_cache` to enable a limited
6+
form of per-record `Interest` caching for `log` records ([#1636])
7+
8+
### Changed
9+
10+
- Updated minimum supported Rust version (MSRV) to Rust 1.49.0 ([#1913])
11+
12+
### Fixed
13+
14+
- **log-tracer**: Fixed `LogTracer` not honoring `tracing` max level filters
15+
([#1543])
16+
- Broken links in documentation ([#2068], [#2077])
17+
18+
Thanks to @Millione, @teozkr, @koute, @Folyd, and @ben0x539 for contributing to
19+
this release!
20+
21+
[#1636]: https://github.com/tokio-rs/tracing/pulls/1636
22+
[#1913]: https://github.com/tokio-rs/tracing/pulls/1913
23+
[#1543]: https://github.com/tokio-rs/tracing/pulls/1543
24+
[#2068]: https://github.com/tokio-rs/tracing/pulls/2068
25+
[#2077]: https://github.com/tokio-rs/tracing/pulls/2077
26+
127
# 0.1.2 (February 19th, 2020)
228

329
### Added

tracing-log/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-log"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["Tokio Contributors <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/tokio-rs/tracing"

tracing-log/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
//! [`tracing::Event`]: https://docs.rs/tracing/latest/tracing/struct.Event.html
101101
//! [flags]: https://docs.rs/tracing/latest/tracing/#crate-feature-flags
102102
//! [`Builder::with_interest_cache`]: log_tracer::Builder::with_interest_cache
103-
#![doc(html_root_url = "https://docs.rs/tracing-log/0.1.2")]
103+
#![doc(html_root_url = "https://docs.rs/tracing-log/0.1.3")]
104104
#![doc(
105105
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
106106
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)