Skip to content

Commit 89418ee

Browse files
authored
subscriber: prepare to release 0.2.13 (#1024)
### Changed - Updated `tracing-core` to 0.1.17 ([#992]) ### Added - **env-filter**: Added support for filtering on targets which contain dashes ([#1014]) - **env-filter**: Added a warning when creating an `EnvFilter` that contains directives that would enable a level disabled by the `tracing` crate's `static_max_level` features ([#1021]) Thanks to @jyn514 and @bkchr for contributing to this release! [#992]: #992 [#1014]: #1014 [#1021]: #1021
1 parent 4b54cbc commit 89418ee

File tree

5 files changed

+30
-10
lines changed

5 files changed

+30
-10
lines changed

examples/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ default = []
1010
[dev-dependencies]
1111

1212
# tracing crates
13-
tracing = { path = "../tracing", version = "0.1"}
14-
tracing-core = { path = "../tracing-core", version = "0.1"}
13+
tracing = { path = "../tracing", version = "0.1" }
14+
tracing-core = { path = "../tracing-core", version = "0.1" }
1515
tracing-error = { path = "../tracing-error" }
1616
tracing-flame = { path = "../tracing-flame" }
1717
tracing-tower = { version = "0.1.0", path = "../tracing-tower" }
18-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.12", features = ["json", "chrono"] }
18+
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.13", features = ["json", "chrono"] }
1919
tracing-futures = { version = "0.2.1", path = "../tracing-futures", features = ["futures-01"] }
20-
tracing-attributes = { path = "../tracing-attributes", version = "0.1.2"}
20+
tracing-attributes = { path = "../tracing-attributes", version = "0.1.2" }
2121
tracing-log = { path = "../tracing-log", version = "0.1.1", features = ["env_logger"] }
2222
tracing-serde = { path = "../tracing-serde" }
2323
tracing-opentelemetry = { path = "../tracing-opentelemetry" }
@@ -27,7 +27,7 @@ tracing-journald = { path = "../tracing-journald" }
2727
serde_json = "1.0"
2828

2929
futures = "0.3"
30-
tokio = { version = "0.2.12", features = ["full"] }
30+
tokio = { version = "0.2.13", features = ["full"] }
3131

3232
# env-logger example
3333
env_logger = "0.7"

tracing-subscriber/CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# 0.2.13 (October 7, 2020)
2+
3+
### Changed
4+
5+
- Updated `tracing-core` to 0.1.17 ([#992])
6+
7+
### Added
8+
9+
- **env-filter**: Added support for filtering on targets which contain dashes
10+
([#1014])
11+
- **env-filter**: Added a warning when creating an `EnvFilter` that contains
12+
directives that would enable a level disabled by the `tracing` crate's
13+
`static_max_level` features ([#1021])
14+
15+
Thanks to @jyn514 and @bkchr for contributing to this release!
16+
17+
[#992]: https://github.com/tokio-rs/tracing/pull/992
18+
[#1014]: https://github.com/tokio-rs/tracing/pull/1014
19+
[#1021]: https://github.com/tokio-rs/tracing/pull/1021
20+
121
# 0.2.12 (September 11, 2020)
222

323
### Fixed
@@ -6,7 +26,7 @@
626
`Into<LevelFilter>` impl ([#966])
727
- **env-filter**: Fixed `EnvFilter` enabling spans that should not be enabled
828
when multiple subscribers are in use ([#927])
9-
29+
1030
### Changed
1131

1232
- **json**: `format::Json` now outputs fields in a more readable order ([#892])
@@ -33,7 +53,7 @@ for contributing to this release!
3353
[#910]: https://github.com/tokio-rs/tracing/pull/910
3454
[#918]: https://github.com/tokio-rs/tracing/pull/918
3555

36-
# 0.2.12 (August 10, 2020)
56+
# 0.2.11 (August 10, 2020)
3757

3858
### Fixed
3959

tracing-subscriber/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-subscriber"
3-
version = "0.2.12"
3+
version = "0.2.13"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

tracing-subscriber/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers.
2121
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
2222
[crates-url]: https://crates.io/crates/tracing-subscriber
2323
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
24-
[docs-url]: https://docs.rs/tracing-subscriber/0.2.12
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.2.13
2525
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2626
[docs-master-url]: https://tracing-rs.netlify.com/tracing_subscriber
2727
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

tracing-subscriber/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
//! [`env_logger` crate]: https://crates.io/crates/env_logger
6868
//! [`parking_lot`]: https://crates.io/crates/parking_lot
6969
//! [`registry`]: registry/index.html
70-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.12")]
70+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.13")]
7171
#![doc(
7272
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
7373
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)