From 8867e27f0042435a1c9f4e31ec2ff277606d826c Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Wed, 25 Dec 2024 12:48:17 +0200 Subject: [PATCH] tracy-client: 0.18.0 --- README.mkd | 1 + tracing-tracy/Cargo.toml | 6 +++--- tracy-client/Cargo.toml | 2 +- tracy-client/tests/tests.rs | 6 ++++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.mkd b/README.mkd index b3ccbd3..ed7dace 100644 --- a/README.mkd +++ b/README.mkd @@ -56,4 +56,5 @@ The following table lists the version correspondence between the libraries. | v0.10 | 0.22.0 | 0.17.0 | 0.11.0 | | v0.11.0 | 0.23.0 | 0.17.1 | 0.11.1 | | v0.11.1 | 0.24.0 | 0.17.3 | 0.11.2 | +| v0.11.1 | 0.24.3 | 0.18.0 | 0.11.4 | diff --git a/tracing-tracy/Cargo.toml b/tracing-tracy/Cargo.toml index d36ad1f..a27c29c 100644 --- a/tracing-tracy/Cargo.toml +++ b/tracing-tracy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-tracy" -version = "0.11.3" +version = "0.11.4" authors = ["Simonas Kazlauskas "] license.workspace = true edition.workspace = true @@ -20,7 +20,7 @@ bench = true [dependencies] tracing-core = { version = "0.1", default-features = false, features = ["std"] } tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "registry"] } -client = { package = "tracy-client", path = "../tracy-client", version = "0.17.0", default-features = false } +client = { package = "tracy-client", path = "../tracy-client", version = ">=0.17.0,<0.19.0", default-features = false } [dev-dependencies] tracing = { version = "0.1", default-features = false, features = ["std"] } @@ -58,5 +58,5 @@ rustdoc-args = ["--cfg", "tracing_tracy_docs"] all-features = true [lints.rust.unexpected_cfgs] -level = "warn" +level = "warn" check-cfg = ['cfg(tracing_tracy_docs)'] diff --git a/tracy-client/Cargo.toml b/tracy-client/Cargo.toml index 9c1e197..96f586f 100644 --- a/tracy-client/Cargo.toml +++ b/tracy-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracy-client" -version = "0.17.6" # AUTO-BUMP +version = "0.18.0" # AUTO-BUMP authors = ["Simonas Kazlauskas "] license.workspace = true edition.workspace = true diff --git a/tracy-client/tests/tests.rs b/tracy-client/tests/tests.rs index 08e728a..89ee9e2 100644 --- a/tracy-client/tests/tests.rs +++ b/tracy-client/tests/tests.rs @@ -126,8 +126,10 @@ fn gpu() { span2.end_zone(); // Some time later, when the timestamps are back - span1.upload_timestamp(100_000, 110_000); - span2.upload_timestamp(120_000, 130_000); + span1.upload_timestamp_start(100_000); + span1.upload_timestamp_end(110_000); + span2.upload_timestamp_start(120_000); + span2.upload_timestamp_end(130_000); } fn main() {