Skip to content

Commit 139d248

Browse files
authored
attributes: prepare to release 0.1.9 (#773)
# 0.1.9 (July 8, 2020) ### Added - Support for arbitrary expressions as fields in `#[instrument]` (#672) ### Changed - `#[instrument]` now emits a compiler warning when ignoring unrecognized input (#672, #786) Fixes #785 Signed-off-by: Eliza Weisman <[email protected]>
1 parent 4a7e866 commit 139d248

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

tracing-attributes/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.1.9 (July 8, 2020)
2+
3+
### Added
4+
5+
- Support for arbitrary expressions as fields in `#[instrument]` (#672)
6+
7+
### Changed
8+
9+
- `#[instrument]` now emits a compiler warning when ignoring unrecognized
10+
input (#672, #786)
11+
112
# 0.1.8 (May 13, 2020)
213

314
### Added

tracing-attributes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "tracing-attributes"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag.
11-
version = "0.1.8"
11+
version = "0.1.9"
1212
authors = [
1313
"Tokio Contributors <[email protected]>",
1414
"Eliza Weisman <[email protected]>",

tracing-attributes/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Macro attributes for application-level tracing.
1414
[crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg
1515
[crates-url]: https://crates.io/crates/tracing-attributes
1616
[docs-badge]: https://docs.rs/tracing-attributes/badge.svg
17-
[docs-url]: https://docs.rs/tracing-attributes/0.1.8
17+
[docs-url]: https://docs.rs/tracing-attributes/0.1.9
1818
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
1919
[docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes
2020
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -39,7 +39,7 @@ First, add this to your `Cargo.toml`:
3939

4040
```toml
4141
[dependencies]
42-
tracing-attributes = "0.1.8"
42+
tracing-attributes = "0.1.9"
4343
```
4444

4545
*Compiler support: requires rustc 1.39+*
@@ -58,7 +58,7 @@ pub fn my_function(my_arg: usize) {
5858

5959

6060
[`tracing`]: https://crates.io/crates/tracing
61-
[span]: https://docs.rs/tracing/0.1.8/tracing/span/index.html
61+
[span]: https://docs.rs/tracing/latest/tracing/span/index.html
6262

6363
## License
6464

tracing-attributes/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//!
1313
//! ```toml
1414
//! [dependencies]
15-
//! tracing-attributes = "0.1.8"
15+
//! tracing-attributes = "0.1.9"
1616
//! ```
1717
//!
1818
//! *Compiler support: requires rustc 1.39+*
@@ -35,7 +35,7 @@
3535
//! [`tracing`]: https://crates.io/crates/tracing
3636
//! [span]: https://docs.rs/tracing/latest/tracing/span/index.html
3737
//! [instrument]: attr.instrument.html
38-
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.8")]
38+
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.9")]
3939
#![warn(
4040
missing_debug_implementations,
4141
missing_docs,

0 commit comments

Comments
 (0)