mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-30 06:20:38 +00:00
parent
73c0c10594
commit
1aa9efff04
@ -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)
|
||||
|
||||
### Breaking Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tracing-opentelemetry"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
authors = [
|
||||
"Julian Tescher <julian@tescher.me>",
|
||||
"Tokio Contributors <team@tokio.rs>"
|
||||
|
@ -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.7.0
|
||||
[crates-url]: https://crates.io/crates/tracing-opentelemetry/0.8.0
|
||||
[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-url]: https://tracing-rs.netlify.com/tracing_opentelemetry
|
||||
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
|
||||
|
@ -90,7 +90,7 @@
|
||||
//!
|
||||
#![deny(unreachable_pub)]
|
||||
#![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(
|
||||
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/"
|
||||
|
Loading…
x
Reference in New Issue
Block a user