Skip to content

Commit

Permalink
chore: bump 0.7.2 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
andylokandy authored Aug 16, 2024
1 parent 64fd1d2 commit 2e4ecd8
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## v0.7.2

- Allow to `LocalSpan::add_property()` when the local parent is a `Span`.

## v0.7.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion fastrace-datadog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-jaeger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastrace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fastrace/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
() => {{
Expand Down

0 comments on commit 2e4ecd8

Please sign in to comment.