Skip to content

Commit a4f2ee2

Browse files
authored
opentelemetry: prepare for v0.18.0 release (#2312)
### Breaking Changes - Upgrade to `v0.18.0` of `opentelemetry` (#2303) For list of breaking changes in OpenTelemetry, see the [v0.18.0 changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0180). ### Fixed - `on_event` respects event's explicit parent (#2296)
1 parent ffad660 commit a4f2ee2

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

tracing-opentelemetry/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 0.18.0 (September 18, 2022)
2+
3+
### Breaking Changes
4+
5+
- Upgrade to `v0.18.0` of `opentelemetry` ([#2303])
6+
For list of breaking changes in OpenTelemetry, see the
7+
[v0.18.0 changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0180).
8+
9+
### Fixed
10+
11+
- `on_event` respects event's explicit parent ([#2296])
12+
13+
Thanks to @wprzytula for contributing to this release!
14+
15+
[#2303]: https://github.com/tokio-rs/tracing/pull/2303
16+
[#2296]: https://github.com/tokio-rs/tracing/pull/2296
17+
118
# 0.17.4 (July 1, 2022)
219

320
This release adds optional support for recording `std::error::Error`s using

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.17.4"
3+
version = "0.18.0"
44
authors = [
55
"Julian Tescher <[email protected]>",
66
"Tokio Contributors <[email protected]>"

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.17.4
20+
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.18.0
2121
[docs-badge]: https://docs.rs/tracing-opentelemetry/badge.svg
22-
[docs-url]: https://docs.rs/tracing-opentelemetry/0.17.4/tracing_opentelemetry
22+
[docs-url]: https://docs.rs/tracing-opentelemetry/0.18.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
@@ -100,7 +100,7 @@
100100
//! [subscriber]: tracing_subscriber::subscribe
101101
#![deny(unreachable_pub)]
102102
#![cfg_attr(test, deny(warnings))]
103-
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.17.4")]
103+
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.18.0")]
104104
#![doc(
105105
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
106106
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)