Skip to content

Commit

Permalink
tracy-client: 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Dec 25, 2024
1 parent 97395f7 commit 8867e27
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
<!-- AUTO-UPDATE -->
6 changes: 3 additions & 3 deletions tracing-tracy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracing-tracy"
version = "0.11.3"
version = "0.11.4"
authors = ["Simonas Kazlauskas <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand All @@ -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"] }
Expand Down Expand Up @@ -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)']
2 changes: 1 addition & 1 deletion tracy-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracy-client"
version = "0.17.6" # AUTO-BUMP
version = "0.18.0" # AUTO-BUMP
authors = ["Simonas Kazlauskas <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand Down
6 changes: 4 additions & 2 deletions tracy-client/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 8867e27

Please sign in to comment.