From af1080f21cd5910e58226dfda9a4686a01454e1f Mon Sep 17 00:00:00 2001 From: Alex Wakefield Date: Fri, 12 May 2023 11:16:42 +0100 Subject: [PATCH] Move path matching changes to right log (#91) * doc: move path matching changes to right log * update --------- Co-authored-by: Conrad Ludgate --- CHANGELOG.md | 4 ---- reqwest-tracing/CHANGELOG.md | 14 ++++++++++++++ reqwest-tracing/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edbbb10..b134121 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - `RequestBuilder::version` method to configure the HTTP version -- `OtelPathNames` extension to provide known parameterized paths that will be used in span names - -### Changed -- `DefaultSpanBackend` and `SpanBackendWithUrl` default span name to HTTP method name instead of `reqwest-http-client` ## [0.2.1] - 2023-03-09 diff --git a/reqwest-tracing/CHANGELOG.md b/reqwest-tracing/CHANGELOG.md index db892a5..ffb800f 100644 --- a/reqwest-tracing/CHANGELOG.md +++ b/reqwest-tracing/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2] - 2023-05-12 + +### Added +- `OtelPathNames` extension to provide known parameterized paths that will be used in span names + +### Changed +- `DefaultSpanBackend` and `SpanBackendWithUrl` default span name to HTTP method name instead of `reqwest-http-client` + +## [0.4.1] - 2023-03-09 + +### Added + +- Support for `wasm32-unknown-unknown` target + ## [0.4.0] - 2022-11-15 ### Changed diff --git a/reqwest-tracing/Cargo.toml b/reqwest-tracing/Cargo.toml index 5f34b3c..8d45443 100644 --- a/reqwest-tracing/Cargo.toml +++ b/reqwest-tracing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest-tracing" -version = "0.4.1" +version = "0.4.2" authors = ["Rodrigo Gryzinski "] edition = "2018" description = "Opentracing middleware for reqwest."