Skip to content

Commit 77e6aaa

Browse files
hawkwkaffarell
authored andcommitted
opentelemetry: prepare to release v0.16.0 (tokio-rs#1682)
# 0.16.0 (October 23, 2021) ### Breaking Changes - Upgrade to `v0.3.0` of `tracing-subscriber` ([tokio-rs#1677]) For list of breaking changes in `tracing-subscriber`, see the [v0.3.0 changelog]. ### Added - `OpenTelemetrySpanExt::add_link` method for adding a link between a `tracing` span and a provided OpenTelemetry `Context` ([tokio-rs#1516]) Thanks to @LehMaxence for contributing to this release! [v0.3.0 changelog]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0 [tokio-rs#1516]: tokio-rs#1516 [tokio-rs#1677]: tokio-rs#1677
1 parent 749d5d0 commit 77e6aaa

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

tracing-opentelemetry/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 0.16.0 (October 23, 2021)
2+
3+
### Breaking Changes
4+
5+
- Upgrade to `v0.3.0` of `tracing-subscriber` ([#1677])
6+
For list of breaking changes in `tracing-subscriber`, see the
7+
[v0.3.0 changelog].
8+
9+
### Added
10+
11+
- `OpenTelemetrySpanExt::add_link` method for adding a link between a `tracing`
12+
span and a provided OpenTelemetry `Context` ([#1516])
13+
14+
Thanks to @LehMaxence for contributing to this release!
15+
16+
[v0.3.0 changelog]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0
17+
[#1516]: https://github.com/tokio-rs/tracing/pull/1516
18+
[#1677]: https://github.com/tokio-rs/tracing/pull/1677
19+
120
# 0.15.0 (August 7, 2021)
221

322
### Breaking Changes

tracing-opentelemetry/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-opentelemetry"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = [
55
"Julian Tescher <julian@tescher.me>",
66
"Tokio Contributors <team@tokio.rs>"

tracing-opentelemetry/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Utilities for adding [OpenTelemetry] interoperability to [`tracing`].
1717
[Documentation][docs-url] | [Chat][discord-url]
1818

1919
[crates-badge]: https://img.shields.io/crates/v/tracing-opentelemetry.svg
20-
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.15.0
20+
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.16.0
2121
[docs-badge]: https://docs.rs/tracing-opentelemetry/badge.svg
22-
[docs-url]: https://docs.rs/tracing-opentelemetry/0.15.0/tracing_opentelemetry
22+
[docs-url]: https://docs.rs/tracing-opentelemetry/0.16.0/tracing_opentelemetry
2323
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2424
[docs-master-url]: https://tracing-rs.netlify.com/tracing_opentelemetry
2525
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

tracing-opentelemetry/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
//!
9393
#![deny(unreachable_pub)]
9494
#![cfg_attr(test, deny(warnings))]
95-
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.15.0")]
95+
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.16.0")]
9696
#![doc(
9797
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
9898
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)