opentelemetry: Backport #1036 - prepare for 0.8.0 release (#1037)

This commit is contained in:
Julian Tescher 2020-10-13 16:51:34 -07:00 committed by GitHub
parent 73c0c10594
commit 1aa9efff04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 4 deletions

View File

@ -1,3 +1,18 @@
# 0.8.0 (October 13, 2020)
### Added
- Implement additional record types (bool, i64, u64) (#1007)
### Breaking changes
- Add `PreSampledTracer` interface, removes need to specify sampler (#962)
### Fixed
- Connect external traces (#956)
- Assign default ids if missing (#1027)
# 0.7.0 (August 14, 2020) # 0.7.0 (August 14, 2020)
### Breaking Changes ### Breaking Changes

View File

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

View File

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

View File

@ -90,7 +90,7 @@
//! //!
#![deny(unreachable_pub)] #![deny(unreachable_pub)]
#![cfg_attr(test, deny(warnings))] #![cfg_attr(test, deny(warnings))]
#![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.7.0")] #![doc(html_root_url = "https://docs.rs/tracing-opentelemetry/0.8.0")]
#![doc( #![doc(
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png", 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/" issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"