Skip to content

Commit 42e9869

Browse files
jtescherhawkw
andauthored
Prepare for v0.19.0 release (#23)
### Breaking Changes - Upgrade to `v0.19.0` of `opentelemetry` (#12) For list of breaking changes in OpenTelemetry, see the [v0.19.0 changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0190). - Update MSRV to require rust v1.60+, as `opentelemetry` requires it now (#12) Thanks to @jaysonsantos, @briankung, and @humb1t for contributing to this release! Co-authored-by: Eliza Weisman <[email protected]>
1 parent 128e2f8 commit 42e9869

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.19.0 (May 23, 2023)
2+
3+
### Breaking Changes
4+
5+
- Upgrade to `v0.19.0` of `opentelemetry` (#12)
6+
For list of breaking changes in OpenTelemetry, see the
7+
[v0.19.0 changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0190).
8+
- Update MSRV to require Rust 1.60+, as `opentelemetry` requires it now (#12)
9+
10+
Thanks to @jaysonsantos, @briankung, and @humb1t for contributing to this release!
11+
112
# 0.18.0 (September 18, 2022)
213

314
### Breaking Changes

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ 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.18.0
20+
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.19.0
2121
[docs-badge]: https://docs.rs/tracing-opentelemetry/badge.svg
22-
[docs-url]: https://docs.rs/tracing-opentelemetry/0.18.0/tracing_opentelemetry
22+
[docs-url]: https://docs.rs/tracing-opentelemetry/0.19.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
2626
[mit-url]: LICENSE
27-
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg
28-
[actions-url]:https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI
27+
[actions-badge]: https://github.com/tokio-rs/tracing-opentelemetry/workflows/CI/badge.svg
28+
[actions-url]:https://github.com/tokio-rs/tracing-opentelemetry/actions?query=workflow%3ACI
2929
[discord-badge]: https://img.shields.io/discord/500028886025895936?logo=discord&label=discord&logoColor=white
3030
[discord-url]: https://discord.gg/EeF3cQw
3131
[maint-badge]: https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@
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.18.0")]
103+
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.19.0")]
104104
#![doc(
105105
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
106-
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
106+
issue_tracker_base_url = "https://github.com/tokio-rs/tracing-opentelemetry/issues/"
107107
)]
108108
#![cfg_attr(
109109
docsrs,

0 commit comments

Comments
 (0)