Skip to content

Commit 5b5c6b8

Browse files
committed
Prepare version 0.15.0
1 parent d024c1b commit 5b5c6b8

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.15.0] - 2021-05-24
11+
12+
### Changed
13+
14+
- Upgrade to `v0.14.0` of `opentelemetry`. Thanks to [@notheotherben](https://github.com/notheotherben).
15+
16+
- Use HttpClient trait from `opentelemetry-http`.
17+
1018
## [0.14.0] - 2021-05-03
1119

1220
### Added
@@ -154,7 +162,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
154162

155163
- First release.
156164

157-
[unreleased]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.13.0...HEAD
165+
[unreleased]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.15.0...HEAD
166+
[0.15.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.14.0...0.15.0
167+
[0.14.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.13.0...0.14.0
158168
[0.13.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.12.0...0.13.0
159169
[0.12.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.11.0...0.12.0
160170
[0.11.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.10.0...0.11.0
@@ -169,4 +179,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
169179
[0.3.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.2.0...0.3.0
170180
[0.2.0]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.1.2...0.2.0
171181
[0.1.2]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.1.1...0.1.2
172-
[zj0.1.1]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.1.0...0.1.1
182+
[0.1.1]: https://github.com/frigus02/opentelemetry-application-insights/compare/0.1.0...0.1.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "opentelemetry-application-insights"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Jan Kuehle <[email protected]>"]
55
edition = "2018"
66
description = "OpenTelemetry exporter for Azure Application Insights"

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Crates.io 0.14.0](https://img.shields.io/crates/v/opentelemetry-application-insights.svg)](https://crates.io/crates/opentelemetry-application-insights)
2-
[![Documentation 0.14.0](https://docs.rs/opentelemetry-application-insights/badge.svg)](https://docs.rs/opentelemetry-application-insights)
1+
[![Crates.io 0.15.0](https://img.shields.io/crates/v/opentelemetry-application-insights.svg)](https://crates.io/crates/opentelemetry-application-insights)
2+
[![Documentation 0.15.0](https://docs.rs/opentelemetry-application-insights/badge.svg)](https://docs.rs/opentelemetry-application-insights)
33
[![Workflow Status](https://github.com/frigus02/opentelemetry-application-insights/workflows/CI/badge.svg)](https://github.com/frigus02/opentelemetry-application-insights/actions?query=workflow%3A%22CI%22)
44

55
# opentelemetry-application-insights
@@ -61,16 +61,17 @@ async fn main() {
6161
### Features
6262

6363
In order to support different async runtimes, the exporter requires you to specify an HTTP
64-
client that works with your chosen runtime. This crate comes with support for:
64+
client that works with your chosen runtime. The [`opentelemetry-http`] crate comes with support
65+
for:
6566

6667
- [`surf`] for [`async-std`]: enable the **surf-client** and **opentelemetry/rt-async-std**
6768
features and configure the exporter with `with_client(surf::Client::new())`.
68-
- [`reqwest`] for [`tokio`]: enable the **reqwest-client** and **opentelemetry/rt-tokio** features
69-
and configure the exporter with `with_client(reqwest::Client::new())`.
70-
- [`reqwest`] for synchronous exports: enable the **reqwest-blocking-client** feature and
71-
configure the exporter with `with_client(reqwest::blocking::Client::new())`.
69+
- [`reqwest`] for [`tokio`]: enable the **reqwest-client** and **opentelemetry/rt-tokio**
70+
features and configure the exporter with either `with_client(reqwest::Client::new())` or
71+
`with_client(reqwest::blocking::Client::new())`.
7272

7373
[`async-std`]: https://crates.io/crates/async-std
74+
[`opentelemetry-http`]: https://crates.io/crates/opentelemetry-http
7475
[`reqwest`]: https://crates.io/crates/reqwest
7576
[`surf`]: https://crates.io/crates/surf
7677
[`tokio`]: https://crates.io/crates/tokio

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
//! All other attributes are directly converted to custom properties.
148148
//!
149149
//! [exceptions]: https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/semantic_conventions/exceptions.md
150-
#![doc(html_root_url = "https://docs.rs/opentelemetry-application-insights/0.14.0")]
150+
#![doc(html_root_url = "https://docs.rs/opentelemetry-application-insights/0.15.0")]
151151
#![deny(missing_docs, unreachable_pub, missing_debug_implementations)]
152152
#![cfg_attr(test, deny(warnings))]
153153

0 commit comments

Comments
 (0)