Skip to content

Commit f169043

Browse files
authored
appender: prepare to release 0.1.1 (#827)
### Added - **rolling**: `minutely` rotation schedule to rotate the log file once every minute (#748) ### Fixed - Fixed broken links in docs (#718) - `tracing-appender` now only enables the necessary `tracing-subscriber`'s feature flags, rather than all of them (#779) Thanks to new contributors @ericjheinz and @sourcefrog for contributing to this release! Signed-off-by: Eliza Weisman <[email protected]>
1 parent 96e9d6d commit f169043

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

tracing-appender/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 0.1.1 (July 20, 2020)
2+
3+
### Added
4+
5+
- **rolling**: `minutely` rotation schedule to rotate the log file once every
6+
minute (#748)
7+
8+
### Fixed
9+
10+
- Fixed broken links in docs (#718)
11+
- `tracing-appender` now only enables the necessary `tracing-subscriber`'s
12+
feature flags, rather than all of them (#779)
13+
14+
Thanks to new contributors @ericjheinz and @sourcefrog for contributing
15+
to this release!
16+
117
# 0.1.0 (May 5, 2020)
218

319
- Initial release

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.0"
3+
version = "0.1.1"
44
authors = [
55
"Zeki Sherif <[email protected]>",
66
"Tokio Contributors <[email protected]>"

tracing-appender/README.md

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

1414
[crates-badge]: https://img.shields.io/crates/v/tracing-appender.svg
15-
[crates-url]: https://crates.io/crates/tracing-appender/0.1.0
15+
[crates-url]: https://crates.io/crates/tracing-appender/0.1.1
1616
[docs-badge]: https://docs.rs/tracing-appender/badge.svg
17-
[docs-url]: https://docs.rs/tracing-appender/0.1.0
17+
[docs-url]: https://docs.rs/tracing-appender/0.1.1
1818
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
1919
[docs-master-url]: https://tracing.rs/tracing-appender
2020
[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
@@ -104,7 +104,7 @@
104104
//! .init();
105105
//! # }
106106
//! ```
107-
#![doc(html_root_url = "https://docs.rs/tracing-appender/0.1.0")]
107+
#![doc(html_root_url = "https://docs.rs/tracing-appender/0.1.1")]
108108
#![warn(
109109
missing_debug_implementations,
110110
missing_docs,

0 commit comments

Comments
 (0)