Skip to content

Commit

Permalink
prepare for v0.5.1 publish (#162)
Browse files Browse the repository at this point in the history
* prepare for v0.5.1 publish

Signed-off-by: Zhenchi <zhongzc_arch@outlook.com>

* Update CHANGELOG.md

---------

Signed-off-by: Zhenchi <zhongzc_arch@outlook.com>
Co-authored-by: Andy Lok <andylokandy@hotmail.com>
  • Loading branch information
zhongzc and andylokandy committed Aug 20, 2023
1 parent 28a5e18 commit ac7384e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## v0.5.1

- Fix panics due to destruction of Thread Local Storage value

## v0.5.0

- Add `Event` type to represent single points in time during the span's lifetime.
Expand Down
2 changes: 1 addition & 1 deletion minitrace-datadog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minitrace-datadog"
version = "0.5.0"
version = "0.5.1"
authors = ["The TiKV Project Authors"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion minitrace-jaeger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minitrace-jaeger"
version = "0.5.0"
version = "0.5.1"
authors = ["The TiKV Project Authors"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion minitrace-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minitrace-macro"
version = "0.5.0"
version = "0.5.1"
authors = ["The TiKV Project Authors"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion minitrace-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minitrace-opentelemetry"
version = "0.5.0"
version = "0.5.1"
authors = ["The TiKV Project Authors"]
license = "Apache-2.0"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions minitrace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minitrace"
version = "0.5.0"
version = "0.5.1"
authors = ["The TiKV Project Authors"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -17,7 +17,7 @@ enable = []

[dependencies]
futures = "0.3"
minitrace-macro = { version = "0.5.0", path = "../minitrace-macro" }
minitrace-macro = { version = "0.5.1", path = "../minitrace-macro" }
minstant = "0.1"
parking_lot = "0.12"
pin-project = "1"
Expand All @@ -36,9 +36,9 @@ futures-timer = "3"
log = "0.4"
logcall = "0.1.4"
minitrace = { path = ".", features = ["enable"] }
minitrace-datadog = { version = "0.5.0", path = "../minitrace-datadog" }
minitrace-jaeger = { version = "0.5.0", path = "../minitrace-jaeger" }
minitrace-opentelemetry = { version = "0.5.0", path = "../minitrace-opentelemetry" }
minitrace-datadog = { version = "0.5.1", path = "../minitrace-datadog" }
minitrace-jaeger = { version = "0.5.1", path = "../minitrace-jaeger" }
minitrace-opentelemetry = { version = "0.5.1", path = "../minitrace-opentelemetry" }
mockall = "0.11"
once_cell = "1"
opentelemetry = { version = "0.19", features = ["trace"] }
Expand Down

0 comments on commit ac7384e

Please sign in to comment.