From 397b4b7c8a5e9db1fd8e1c576af7ba861164d3b6 Mon Sep 17 00:00:00 2001 From: paullegranddc Date: Fri, 27 Feb 2026 15:07:53 +0100 Subject: [PATCH] release: bump crate to 0.3.0 and add changelog --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- Cargo.lock | 6 +++--- Cargo.toml | 2 +- README.md | 2 +- datadog-opentelemetry/CHANGELOG.md | 6 ++++++ 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5c4eecd0..7d59bc25 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -7,7 +7,7 @@ body: attributes: label: Tracer Version(s) description: "Version(s) of the tracer affected by this bug" - placeholder: "0.2.1" + placeholder: "0.3.0" validations: required: true diff --git a/Cargo.lock b/Cargo.lock index 38b12839..b2d39a48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -462,7 +462,7 @@ dependencies = [ [[package]] name = "datadog-opentelemetry" -version = "0.3.0-alpha.1" +version = "0.3.0" dependencies = [ "anyhow", "arc-swap", @@ -1723,7 +1723,7 @@ dependencies = [ [[package]] name = "propagator" -version = "0.3.0-alpha.1" +version = "0.3.0" dependencies = [ "datadog-opentelemetry", "http-body-util", @@ -2179,7 +2179,7 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" [[package]] name = "simple_tracing" -version = "0.3.0-alpha.1" +version = "0.3.0" dependencies = [ "datadog-opentelemetry", "opentelemetry", diff --git a/Cargo.toml b/Cargo.toml index 2fe8ef81..6c8bd099 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ resolver = "2" [workspace.package] rust-version = "1.84.1" edition = "2021" -version = "0.3.0-alpha.1" +version = "0.3.0" license = "Apache-2.0" repository = "https://github.com/DataDog/dd-trace-rs" readme = "README.md" diff --git a/README.md b/README.md index 848f8042..3ba96d39 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ let logging_provider = datadog_opentelemetry::logs() For advanced usage and configuration information, check out [`DatadogTracingBuilder`], [`configuration::ConfigBuilder`] and the -[library documentation](https://docs.rs/datadog-opentelemetry/0.3.0-alpha.1/datadog_opentelemetry/). +[library documentation](https://docs.rs/datadog-opentelemetry/0.3.0/datadog_opentelemetry/). * Through env variables diff --git a/datadog-opentelemetry/CHANGELOG.md b/datadog-opentelemetry/CHANGELOG.md index d6102a7b..9d563f01 100644 --- a/datadog-opentelemetry/CHANGELOG.md +++ b/datadog-opentelemetry/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3.0 (Feb 27, 2026) + +- Add OTEL metrics support in https://github.com/DataDog/dd-trace-rs/pull/127 +- add OTEL logs support in https://github.com/DataDog/dd-trace-rs/pull/144 +- Remove error logs on transient trace export issues in https://github.com/DataDog/dd-trace-rs/pull/148 + ## 0.2.1 (Dec 11, 2025) - Fix Remote Config path parsing