Skip to content

Commit 6ce7189

Browse files
authored
appender: prepare to release v0.1.2 (#1157)
Changed - **non_blocking**: Updated `crossbeam-channel` dependency to 0.5 (#1031) Fixed - **non_blocking**: Fixed a race condition when logging on shutdown (#1125) - Several documentation improvements (#1109, #1110, #941, #953)
1 parent 9549be9 commit 6ce7189

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

tracing-appender/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.1.2 (December 28, 2020)
2+
3+
### Changed
4+
5+
- **non_blocking**: Updated `crossbeam-channel` dependency to 0.5 (#1031)
6+
7+
### Fixed
8+
9+
- **non_blocking**: Fixed a race condition when logging on shutdown (#1125)
10+
- Several documentation improvements (#1109, #1110, #941, #953)
11+
112
# 0.1.1 (July 20, 2020)
213

314
### Added

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.1.1"
3+
version = "0.1.2"
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.1.1
19+
[crates-url]: https://crates.io/crates/tracing-appender/0.1.2
2020
[docs-badge]: https://docs.rs/tracing-appender/badge.svg
21-
[docs-url]: https://docs.rs/tracing-appender/0.1.1
21+
[docs-url]: https://docs.rs/tracing-appender/0.1.2
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.1.1")]
125+
#![doc(html_root_url = "https://docs.rs/tracing-appender/0.1.2")]
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)