Skip to content

Commit 155e867

Browse files
committed
Prepare version 0.14.0
1 parent c6ac123 commit 155e867

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.14.0] - 2021-05-03
11+
12+
### Added
13+
14+
- Add `with_service_name` function to pipeline builder, which makes it easier to specify a service name (translated to Cloud Role Name in Application Insights). Thanks to [@isobelhooper](https://github.com/isobelhooper) and [@johnchildren](https://github.com/johnchildren).
15+
1016
## [0.13.0] - 2021-03-25
1117

1218
### Changed

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.13.0"
3+
version = "0.14.0"
44
authors = ["Jan Kuehle <[email protected]>"]
55
edition = "2018"
66
description = "OpenTelemetry exporter for Azure Application Insights"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Crates.io 0.13.0](https://img.shields.io/crates/v/opentelemetry-application-insights.svg)](https://crates.io/crates/opentelemetry-application-insights)
2-
[![Documentation 0.13.0](https://docs.rs/opentelemetry-application-insights/badge.svg)](https://docs.rs/opentelemetry-application-insights)
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)
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

src/lib.rs

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

0 commit comments

Comments
 (0)