Release reqwest middleware 0.1.5 (#31)

* (cargo-release) reqwest-middleware version 0.1.5
* (cargo-release) reqwest-retry version 0.1.4
* (cargo-release) reqwest-tracing version 0.2.1
* (cargo-release) reqwest-middleware start next development iteration 0.1.6-alpha.0
* (cargo-release) reqwest-retry start next development iteration 0.1.5-alpha.0
* (cargo-release) reqwest-tracing start next development iteration 0.2.2-alpha.0
* Updated CHANGELOGS for 0.1.4 and 0.1.5
pull/34/head
tl-rodrigo-gryzinski 2022-02-21 12:50:18 +00:00 committed by GitHub
parent 6f75e43ad4
commit 5f180155ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 27 additions and 5 deletions

View File

@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.5] - 2022-02-21
### Added
- Added support for `opentelemetry` version `0.17`.
## [0.1.4] - 2022-01-24
### Changed
- Made `Debug` impl for `ClientWithExtensions` non-exhaustive.
## [0.1.3] - 2021-10-18
### Security

View File

@ -1,6 +1,6 @@
[package]
name = "reqwest-middleware"
version = "0.1.5-alpha.0"
version = "0.1.6-alpha.0"
authors = ["Rodrigo Gryzinski <rodrigo.gryzinski@truelayer.com>"]
edition = "2018"
description = "Wrapper around reqwest to allow for client middleware chains."

View File

@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.4] - 2022-02-21
### Changed
- Updated `reqwest-middleware` to `0.1.5`
## [0.1.3] - 2022-01-24
### Changed
- Updated `reqwest-middleware` to `0.1.4`
## [0.1.2] - 2021-09-28
### Added
- Re-export `RetryPolicy` from the crate root.

View File

@ -1,6 +1,6 @@
[package]
name = "reqwest-retry"
version = "0.1.4-alpha.0"
version = "0.1.5-alpha.0"
authors = ["Rodrigo Gryzinski <rodrigo.gryzinski@truelayer.com>"]
edition = "2018"
description = "Retry middleware for reqwest."
@ -10,7 +10,7 @@ keywords = ["reqwest", "http", "middleware", "retry"]
categories = ["web-programming::http-client"]
[dependencies]
reqwest-middleware = { version = "^0.1.5-alpha.0", path = "../reqwest-middleware" }
reqwest-middleware = { version = "^0.1.6-alpha.0", path = "../reqwest-middleware" }
anyhow = "1"
async-trait = "0.1.51"

View File

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.1] - 2022-02-21
### Changed
- Updated `reqwest-middleware` to `0.1.5`
## [0.2.0] - 2021-11-30
### Breaking
- Update to `tracing-subscriber` `0.3.x` when `opentelemetry_0_16` is active.

View File

@ -1,6 +1,6 @@
[package]
name = "reqwest-tracing"
version = "0.2.1-alpha.0"
version = "0.2.2-alpha.0"
authors = ["Rodrigo Gryzinski <rodrigo.gryzinski@truelayer.com>"]
edition = "2018"
description = "Opentracing middleware for reqwest."
@ -18,7 +18,7 @@ opentelemetry_0_17 = ["opentelemetry_0_17_pkg", "tracing-opentelemetry_0_17_pkg"
[dependencies]
reqwest-middleware = { version = "^0.1.5-alpha.0", path = "../reqwest-middleware" }
reqwest-middleware = { version = "^0.1.6-alpha.0", path = "../reqwest-middleware" }
async-trait = "0.1.51"
reqwest = { version = "0.11", default-features = false }