Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Jan 28, 2024
1 parent 77c5196 commit d5c1507
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
15 changes: 12 additions & 3 deletions FEATURES.mkd
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
* `enable` – enables the Tracy client. Corresponds to the `TRACY_ENABLE` define.
* `flush-on-exit` – waits for Tracy to connect and read out the profiling data before the program
terminates. Corresponds to the `TRACY_NO_EXIT` define. Does not work in combination with the
`manual-lifetime` feature.
* `manual-lifetime` – allow for manual initialization and deinitialization of the profiler data
structures. Corresponds to the `TRACY_MANUAL_LIFETIME` define. `tracy_client::Client`
transparently switches to manual lifetime management when this feature is enabled. Implies
`delayed-init`.
* `system-tracing` – enable capture of system level details. Corresponds to the
`TRACY_NO_SYSTEM_TRACING` define.
* `context-switch-tracing` – enable capture of the context switch data. Corresponds to the
Expand All @@ -19,9 +26,11 @@
to the `TRACY_ON_DEMAND` define.
* `fibers` – enable support for instrumenting fibers, coroutines and similar such asynchrony
primitives. Corresponds to the `TRACY_FIBERS` define.
* `callstack-inlines` - enables resolution of inline frames for call stacks. Disabling it will make the profiler use
the basic but much faster frame resolution mode. Corresponds to the `TRACY_NO_CALLSTACK_INLINES` define.

* `callstack-inlines` - enables resolution of inline frames for call stacks. Disabling it will make
the profiler use the basic but much faster frame resolution mode. Corresponds to the
`TRACY_NO_CALLSTACK_INLINES` define.
* `delayed-init` – initializes trace structures upon a first request, rather than at load time.
Corresponds to thw `TRACY_DELAYED_INIT` define.

Refer to this package's `Cargo.toml` for the list of the features enabled by default. Refer to
the `Tracy` manual for more information on the implications of each feature.
4 changes: 2 additions & 2 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.10.5"
version = "0.11.0"
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.16.2", default-features = false }
client = { package = "tracy-client", path = "../tracy-client", version = "0.17.0", default-features = false }

[dev-dependencies]
tracing = { version = "0.1", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion tracy-client-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracy-client-sys"
version = "0.22.1" # AUTO-BUMP
version = "0.22.2" # AUTO-BUMP
authors = ["Simonas Kazlauskas <[email protected]>"]
build = "build.rs"
license = "(MIT OR Apache-2.0) AND BSD-3-Clause"
Expand Down
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.16.5" # AUTO-BUMP
version = "0.17.0" # AUTO-BUMP
authors = ["Simonas Kazlauskas <[email protected]>"]
license.workspace = true
edition.workspace = true
Expand Down

0 comments on commit d5c1507

Please sign in to comment.