Skip to content

Commit 47f7da5

Browse files
committed
attributes: prepare to release v0.1.12
Fixed - Compiler error when using `#[instrument(err)]` on functions with mutable parameters ([#1167]) - Missing function visibility modifier when using `#[instrument]` with `async-trait` ([#977]) - Multiple documentation fixes and improvements ([#965], [#981], [#1215]) Changed - `tracing-futures` dependency is no longer required when using `#[instrument]` on async functions ([#808]) Thanks to @nagisa, @Txuritan, @TaKO8Ki, and @okready for contributing to this release! [#1167]: #1167 [#977]: #977 [#965]: #965 [#981]: #981 [#1215]: #1215 [#808]: #808
1 parent 8a64865 commit 47f7da5

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

tracing-attributes/CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
1+
# 0.1.12 (February 4, 2021)
2+
3+
### Fixed
4+
5+
- Compiler error when using `#[instrument(err)]` on functions with mutable
6+
parameters ([#1167])
7+
- Missing function visibility modifier when using `#[instrument]` with
8+
`async-trait` ([#977])
9+
- Multiple documentation fixes and improvements ([#965], [#981], [#1215])
10+
11+
### Changed
12+
13+
- `tracing-futures` dependency is no longer required when using `#[instrument]`
14+
on async functions ([#808])
15+
16+
Thanks to @nagisa, @Txuritan, @TaKO8Ki, and @okready for contributing to this
17+
release!
18+
19+
[#1167]: https://github.com/tokio-rs/tracing/pull/1167
20+
[#977]: https://github.com/tokio-rs/tracing/pull/977
21+
[#965]: https://github.com/tokio-rs/tracing/pull/965
22+
[#981]: https://github.com/tokio-rs/tracing/pull/981
23+
[#1215]: https://github.com/tokio-rs/tracing/pull/1215
24+
[#808]: https://github.com/tokio-rs/tracing/pull/808
25+
126
# 0.1.11 (August 18, 2020)
227

328
### Fixed
429

530
- Corrected wrong minimum supported Rust version note in docs (#941)
631
- Removed unused `syn` features (#928)
732

8-
Thanks to new contributor @jhpratt for contributing to this release!`
33+
Thanks to new contributor @jhpratt for contributing to this release!
934

1035
# 0.1.10 (August 10, 2020)
1136

tracing-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.11"
11+
version = "0.1.12"
1212
authors = [
1313
"Tokio Contributors <[email protected]>",
1414
"Eliza Weisman <[email protected]>",

tracing-attributes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Macro attributes for application-level tracing.
1818
[crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg
1919
[crates-url]: https://crates.io/crates/tracing-attributes
2020
[docs-badge]: https://docs.rs/tracing-attributes/badge.svg
21-
[docs-url]: https://docs.rs/tracing-attributes/0.1.11
21+
[docs-url]: https://docs.rs/tracing-attributes/0.1.12
2222
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2323
[docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -47,7 +47,7 @@ First, add this to your `Cargo.toml`:
4747

4848
```toml
4949
[dependencies]
50-
tracing-attributes = "0.1.11"
50+
tracing-attributes = "0.1.12"
5151
```
5252

5353

tracing-attributes/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//!
1717
//! ```toml
1818
//! [dependencies]
19-
//! tracing-attributes = "0.1.11"
19+
//! tracing-attributes = "0.1.12"
2020
//! ```
2121
//!
2222
//! The [`#[instrument]`][instrument] attribute can now be added to a function
@@ -52,7 +52,7 @@
5252
//! supported compiler version is not considered a semver breaking change as
5353
//! long as doing so complies with this policy.
5454
//!
55-
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.11")]
55+
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.12")]
5656
#![doc(
5757
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
5858
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)