Skip to content

Commit c3a132d

Browse files
github-actions[bot]davidB
authored andcommitted
chore: release
1 parent d72d812 commit c3a132d

File tree

8 files changed

+50
-6
lines changed

8 files changed

+50
-6
lines changed

axum-tracing-opentelemetry/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.30.0](https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/compare/axum-tracing-opentelemetry-v0.29.0...axum-tracing-opentelemetry-v0.30.0) - 2025-08-25
11+
12+
### <!-- 2 -->Added
13+
14+
- *(axum)* optional extraction of `client.address` (former `client_ip`) from http headers or socket's info
15+
# Changelog
216
All notable changes to this project will be documented in this file.
317

418
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

axum-tracing-opentelemetry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = [
1111
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/axum-tracing-opentelemetry"
1212
rust-version.workspace = true
1313
edition.workspace = true
14-
version = "0.29.0"
14+
version = "0.30.0"
1515
authors.workspace = true
1616
repository.workspace = true
1717
license.workspace = true
@@ -30,7 +30,7 @@ tracing = { workspace = true }
3030
tracing-opentelemetry = { workspace = true }
3131
tracing-opentelemetry-instrumentation-sdk = { path = "../tracing-opentelemetry-instrumentation-sdk", features = [
3232
"http",
33-
], version = "0.29" }
33+
], version = "0.30" }
3434

3535
[dev-dependencies]
3636
fake-opentelemetry-collector = { path = "../fake-opentelemetry-collector" }

init-tracing-opentelemetry/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
# Changelog
210
All notable changes to this project will be documented in this file.
311

412
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

init-tracing-opentelemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["tracing", "opentelemetry"]
66
categories = ["development-tools::debugging", "development-tools::profiling"]
77
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/init-tracing-opentelemetry"
88
edition.workspace = true
9-
version = "0.30.0"
9+
version = "0.30.1"
1010
authors.workspace = true
1111
repository.workspace = true
1212
license.workspace = true

tonic-tracing-opentelemetry/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
# Changelog
210
All notable changes to this project will be documented in this file.
311

412
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

tonic-tracing-opentelemetry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = [
1010
]
1111
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/tonic-tracing-opentelemetry"
1212
edition.workspace = true
13-
version = "0.29.0"
13+
version = "0.29.1"
1414
authors.workspace = true
1515
repository.workspace = true
1616
license.workspace = true
@@ -29,7 +29,7 @@ tracing = { workspace = true }
2929
tracing-opentelemetry = { workspace = true }
3030
tracing-opentelemetry-instrumentation-sdk = { path = "../tracing-opentelemetry-instrumentation-sdk", features = [
3131
"http",
32-
], version = "0.29" }
32+
], version = "0.30" }
3333

3434
[dev-dependencies]
3535
axum = { workspace = true }

tracing-opentelemetry-instrumentation-sdk/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.30.0](https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/compare/tracing-opentelemetry-instrumentation-sdk-v0.29.1...tracing-opentelemetry-instrumentation-sdk-v0.30.0) - 2025-08-25
11+
12+
### <!-- 2 -->Added
13+
14+
- *(axum)* optional extraction of `client.address` (former `client_ip`) from http headers or socket's info
15+
# Changelog
216
All notable changes to this project will be documented in this file.
317

418
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

tracing-opentelemetry-instrumentation-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = [
1010
]
1111
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/tracing-opentelemetry-instrumentation-sdk"
1212
edition.workspace = true
13-
version = "0.29.1"
13+
version = "0.30.0"
1414
authors.workspace = true
1515
repository.workspace = true
1616
license.workspace = true

0 commit comments

Comments
 (0)