diff --git a/CHANGELOG.md b/CHANGELOG.md index 0747b61..d6fa6ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## v0.7.2 + - Allow to `LocalSpan::add_property()` when the local parent is a `Span`. ## v0.7.1 diff --git a/Cargo.toml b/Cargo.toml index e6f1e9a..75efc61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,8 +18,8 @@ rust-version = "1.75" [workspace.dependencies] # workspace dependencies -fastrace = { version = "0.7.1", path = "fastrace" } -fastrace-macro = { version = "0.7.1", path = "fastrace-macro" } +fastrace = { version = "0.7.2", path = "fastrace" } +fastrace-macro = { version = "0.7.2", path = "fastrace-macro" } # workspace leaves fastrace-datadog = { path = "fastrace-datadog" } diff --git a/fastrace-datadog/Cargo.toml b/fastrace-datadog/Cargo.toml index 0470e6d..389e811 100644 --- a/fastrace-datadog/Cargo.toml +++ b/fastrace-datadog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastrace-datadog" -version = "0.7.1" +version = "0.7.2" categories = ["development-tools::debugging"] description = "Datadog reporter for fastrace" diff --git a/fastrace-futures/Cargo.toml b/fastrace-futures/Cargo.toml index 08e0f84..e88d37c 100644 --- a/fastrace-futures/Cargo.toml +++ b/fastrace-futures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastrace-futures" -version = "0.7.1" +version = "0.7.2" categories = ["development-tools::debugging"] description = "Utilities for tracing `futures` with fastrace" diff --git a/fastrace-jaeger/Cargo.toml b/fastrace-jaeger/Cargo.toml index def651d..7edd78c 100644 --- a/fastrace-jaeger/Cargo.toml +++ b/fastrace-jaeger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastrace-jaeger" -version = "0.7.1" +version = "0.7.2" categories = ["development-tools::debugging"] description = "Jaeger reporter for fastrace" diff --git a/fastrace-macro/Cargo.toml b/fastrace-macro/Cargo.toml index bd6c5a9..ec9ffb3 100644 --- a/fastrace-macro/Cargo.toml +++ b/fastrace-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastrace-macro" -version = "0.7.1" +version = "0.7.2" categories = ["development-tools::debugging"] description = "Attribute procedural macro for fastrace" diff --git a/fastrace-opentelemetry/Cargo.toml b/fastrace-opentelemetry/Cargo.toml index a5af256..0115d9d 100644 --- a/fastrace-opentelemetry/Cargo.toml +++ b/fastrace-opentelemetry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastrace-opentelemetry" -version = "0.7.1" +version = "0.7.2" categories = ["development-tools::debugging"] description = "Opentelemetry reporter for fastrace" diff --git a/fastrace/Cargo.toml b/fastrace/Cargo.toml index 6745eb8..32832cd 100644 --- a/fastrace/Cargo.toml +++ b/fastrace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastrace" -version = "0.7.1" +version = "0.7.2" categories = ["development-tools::debugging"] description = "A high-performance timeline tracing library for Rust" diff --git a/fastrace/src/macros.rs b/fastrace/src/macros.rs index 54a223c..fc2d53d 100644 --- a/fastrace/src/macros.rs +++ b/fastrace/src/macros.rs @@ -52,7 +52,7 @@ macro_rules! func_path { } /// Get the full path of the function where the macro is invoked. Returns a `&'static str`. -#[deprecated(since = "0.7.1", note = "Please use `fastrace::func_path!()` instead")] +#[deprecated(since = "0.7.0", note = "Please use `fastrace::func_path!()` instead")] #[macro_export] macro_rules! full_name { () => {{