Skip to content

Commit e1d3481

Browse files
authored
appender: prepare to release v0.2.1 (#1963)
# 0.2.1 (February 28, 2022) This release adds an implementation of the `MakeWriter` trait for `RollingFileAppender`, allowing it to be used without wrapping in a `NonBlocking` writer. This release increases the minimum supported Rust version to 1.53.0. ### Added - **rolling**: Added `MakeWriter` implementation for `RollingFileAppender` ([#1760]) ### Changed - Updated minimum supported Rust version (MSRV) to 1.53.0 ([#1851]) - `parking_lot`: updated to v0.12 ([#1878]) ### Fixed - Fixed several documentation typos and issues ([#1780], [d868054], [#1943]) [#1760]: #1760 [#1851]: #1851 [#1878]: #1878 [#1943]: #1943 [d868054]: d868054
1 parent dadd3c0 commit e1d3481

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

tracing-appender/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# 0.2.1 (February 28, 2022)
2+
3+
This release adds an implementation of the `MakeWriter` trait for
4+
`RollingFileAppender`, allowing it to be used without wrapping in a
5+
`NonBlocking` writer.
6+
7+
This release increases the minimum supported Rust version to 1.53.0.
8+
9+
### Added
10+
11+
- **rolling**: Added `MakeWriter` implementation for `RollingFileAppender`
12+
([#1760])
13+
14+
### Changed
15+
16+
- Updated minimum supported Rust version (MSRV) to 1.53.0 ([#1851])
17+
- `parking_lot`: updated to v0.12 ([#1878])
18+
19+
### Fixed
20+
21+
- Fixed several documentation typos and issues ([#1780], [d868054], [#1943])
22+
23+
[#1760]: https://github.com/tokio-rs/tracing/pull/1760
24+
[#1851]: https://github.com/tokio-rs/tracing/pull/1851
25+
[#1878]: https://github.com/tokio-rs/tracing/pull/1878
26+
[#1943]: https://github.com/tokio-rs/tracing/pull/1943
27+
[d868054]: https://github.com/tokio-rs/tracing/commit/d8680547b509978c7113c8f7e19e9b00c789c698
28+
129
# 0.2.0 (October 22, 2021)
230

331
This breaking change release adds support for the new v0.3.x series of
@@ -10,9 +38,11 @@ This release increases the minimum supported Rust version to 1.51.0.
1038
- Updated `tracing-subscriber` to v0.3.x ([#1677])
1139
- Changed `NonBlocking::error_counter` to return an `ErrorCounter` type, rather
1240
than an `Arc<AtomicU64>` ([#1675])
41+
1342
### Changed
1443

1544
- Updated `tracing-subscriber` to v0.3.x ([#1677])
45+
1646
### Fixed
1747

1848
- **non-blocking**: Fixed compilation on 32-bit targets ([#1675])

tracing-appender/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-appender"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = [
55
"Zeki Sherif <zekshi@amazon.com>",
66
"Tokio Contributors <team@tokio.rs>"

tracing-appender/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Writers for logging events and spans
1616
[Documentation][docs-url] | [Chat][discord-url]
1717

1818
[crates-badge]: https://img.shields.io/crates/v/tracing-appender.svg
19-
[crates-url]: https://crates.io/crates/tracing-appender/0.2.0
19+
[crates-url]: https://crates.io/crates/tracing-appender/0.2.1
2020
[docs-badge]: https://docs.rs/tracing-appender/badge.svg
21-
[docs-url]: https://docs.rs/tracing-appender/0.2.0
21+
[docs-url]: https://docs.rs/tracing-appender/0.2.1
2222
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2323
[docs-master-url]: https://tracing.rs/tracing-appender
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

tracing-appender/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! a dedicated logging thread. It also provides a [`RollingFileAppender`][file_appender] that can
88
//! be used with _or_ without the non-blocking writer.
99
//!
10-
//! *Compiler support: [requires `rustc` 1.51+][msrv]*
10+
//! *Compiler support: [requires `rustc` 1.53+][msrv]*
1111
//!
1212
//! [msrv]: #supported-rust-versions
1313
//! [file_appender]: ./rolling/struct.RollingFileAppender.html
@@ -111,7 +111,7 @@
111111
//! ## Supported Rust Versions
112112
//!
113113
//! `tracing-appender` is built against the latest stable release. The minimum supported
114-
//! version is 1.51. The current `tracing-appender` version is not guaranteed to build on
114+
//! version is 1.53. The current `tracing-appender` version is not guaranteed to build on
115115
//! Rust versions earlier than the minimum supported version.
116116
//!
117117
//! Tracing follows the same compiler support policies as the rest of the Tokio
@@ -122,7 +122,7 @@
122122
//! supported compiler version is not considered a semver breaking change as
123123
//! long as doing so complies with this policy.
124124
//!
125-
#![doc(html_root_url = "https://docs.rs/tracing-appender/0.2.0")]
125+
#![doc(html_root_url = "https://docs.rs/tracing-appender/0.2.1")]
126126
#![doc(
127127
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
128128
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)