Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
exclude = ["target"]

[workspace.package]
version = "0.32.0"
version = "0.38.0"
edition = "2024"
rust-version = "1.91.0"
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk"
Expand Down
4 changes: 2 additions & 2 deletions axum-tracing-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = [
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/axum-tracing-opentelemetry"
rust-version.workspace = true
edition.workspace = true
version = "0.33.1"
version = "0.38.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since you are synchronizing versions across the workspace and have defined the version in the workspace root, you should use workspace inheritance here to simplify future updates and ensure consistency.

Suggested change
version = "0.38.0"
version.workspace = true

repository.workspace = true
license.workspace = true

Expand All @@ -30,7 +30,7 @@ tracing = { workspace = true }
tracing-opentelemetry = { workspace = true }
tracing-opentelemetry-instrumentation-sdk = { path = "../tracing-opentelemetry-instrumentation-sdk", features = [
"http",
], version = "0.32" }
], version = "0.38" }

[dev-dependencies]
fake-opentelemetry-collector = { path = "../fake-opentelemetry-collector" }
Expand Down
2 changes: 1 addition & 1 deletion fake-opentelemetry-collector/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.34.1](https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/compare/fake-opentelemetry-collector-v0.34.0...fake-opentelemetry-collector-v0.34.1) - 2026-03-15
## [0.38.0](https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/compare/fake-opentelemetry-collector-v0.34.0...fake-opentelemetry-collector-v0.38.0) - 2026-03-15

### <!-- 1 -->Fixed

Expand Down
2 changes: 1 addition & 1 deletion fake-opentelemetry-collector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ readme = "README.md"
keywords = ["tracing", "opentelemetry", "faker", "mock"]
categories = ["development-tools::testing"]
edition.workspace = true
version = "0.34.1"
version = "0.38.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since you are synchronizing versions across the workspace and have defined the version in the workspace root, you should use workspace inheritance here to simplify future updates and ensure consistency.

Suggested change
version = "0.38.0"
version.workspace = true

repository.workspace = true
license.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion init-tracing-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["tracing", "opentelemetry"]
categories = ["development-tools::debugging", "development-tools::profiling"]
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/init-tracing-opentelemetry"
edition.workspace = true
version = "0.37.0"
version = "0.38.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since you are synchronizing versions across the workspace and have defined the version in the workspace root, you should use workspace inheritance here to simplify future updates and ensure consistency.

Suggested change
version = "0.38.0"
version.workspace = true

repository.workspace = true
license.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion testing-tracing-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license.workspace = true

[dependencies]
assert2 = { workspace = true }
fake-opentelemetry-collector = { path = "../fake-opentelemetry-collector", version = "0.34" }
fake-opentelemetry-collector = { path = "../fake-opentelemetry-collector", version = "0.38" }
insta = { workspace = true }
opentelemetry = { workspace = true }
opentelemetry_sdk = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions tonic-tracing-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = [
]
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/tonic-tracing-opentelemetry"
edition.workspace = true
version = "0.32.2"
version = "0.38.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since you are synchronizing versions across the workspace and have defined the version in the workspace root, you should use workspace inheritance here to simplify future updates and ensure consistency.

Suggested change
version = "0.38.0"
version.workspace = true

repository.workspace = true
license.workspace = true

Expand All @@ -28,7 +28,7 @@ tracing = { workspace = true }
tracing-opentelemetry = { workspace = true }
tracing-opentelemetry-instrumentation-sdk = { path = "../tracing-opentelemetry-instrumentation-sdk", features = [
"http",
], version = "0.32" }
], version = "0.38" }

[dev-dependencies]
axum = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion tracing-opentelemetry-instrumentation-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = [
]
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/tracing-opentelemetry-instrumentation-sdk"
edition.workspace = true
version = "0.32.5"
version = "0.38.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since you are synchronizing versions across the workspace and have defined the version in the workspace root, you should use workspace inheritance here to simplify future updates and ensure consistency.

Suggested change
version = "0.38.0"
version.workspace = true

repository.workspace = true
license.workspace = true

Expand Down
Loading