opentelemetry: prepare for v0.10.0 release (#1166) (#1169)

* opentelemetry: prepare for v0.10.0 release

* Update doc links
This commit is contained in:
Julian Tescher 2021-01-04 12:42:08 -08:00 committed by GitHub
parent 49b4a589bf
commit 035342b1b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,15 @@
# 0.10.0 (December 30, 2020)
### Breaking Changes
- Upgrade to `v0.11.0` of `opentelemetry` (#1161)
For list of breaking changes in OpenTelemetry, see the
[v0.11.0 changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/master/opentelemetry/CHANGELOG.md#v0110).
- Update `OpenTelemetrySpanExt::set_parent` to take a context by value as it is
now stored and propagated. (#1161)
- Rename `PreSampledTracer::sampled_span_context` to
`PreSampledTracer::sampled_context` as it now returns a full otel context. (#1161)
# 0.9.0 (November 13, 2020)
### Added

View File

@ -1,6 +1,6 @@
[package]
name = "tracing-opentelemetry"
version = "0.9.0"
version = "0.10.0"
authors = [
"Julian Tescher <julian@tescher.me>",
"Tokio Contributors <team@tokio.rs>"

View File

@ -17,9 +17,9 @@ Utilities for adding [OpenTelemetry] interoperability to [`tracing`].
[Documentation][docs-url] | [Chat][discord-url]
[crates-badge]: https://img.shields.io/crates/v/tracing-opentelemetry.svg
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.9.0
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.10.0
[docs-badge]: https://docs.rs/tracing-opentelemetry/badge.svg
[docs-url]: https://docs.rs/tracing-opentelemetry/0.9.0/tracing_opentelemetry
[docs-url]: https://docs.rs/tracing-opentelemetry/0.10.0/tracing_opentelemetry
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing_opentelemetry
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

View File

@ -92,7 +92,7 @@
//!
#![deny(unreachable_pub)]
#![cfg_attr(test, deny(warnings))]
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.9.0")]
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.10.0")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"