summaryrefslogtreecommitdiffstats
path: root/third_party/rust/profiling/CHANGELOG.md
blob: f92e2349df60e18c01e667e46bc8ee0011b70110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Changelog

## 1.0.7
* Update tracy-client to 0.14.1

## 1.0.6
 * Update tracy-client to 0.13

## 1.0.5
 * Update puffin to 0.12.1

## 1.0.4
 * Update puffin to 0.10

## 1.0.3
 * Update puffin to 0.6 and puffin-imgui to 0.8

## 1.0.2
 * Fix tracing backend failing to compile when tracing crate is not a dependency in the downstream crate

## 1.0.1
 * Rework feature flags so that downstream *libraries* no longer have to add feature flags per profiling backend.
 * Add a backend that does type checking (for CI purposes)

## 1.0.0
 * Republish 0.1.10 as 1.0.0

## 0.1.10
 * Build fix for when the default feature "procmacros" is disabled

## 0.1.9
 * Bump tracy client version to 0.12 (tracy now uses the 0.7.6 protocol)
 * Bump puffin to 0.4
 * Update the puffin demo to use rafx
 * Aesthetic changes to the puffin example

## 0.1.8
 * Bump tracy client version to 0.11 (tracy now uses the 0.7.5 protocol)

## 0.1.7
 * Re-release due to root cargo.toml referencing 0.1.2 of procmacro crate instead of 0.1.3

## 0.1.6
 * Use tracy directly instead of going through tracy (use the profile-with-tracy feature).
 * Going through tracing is still possible and demonstrated in the example (use the profile-with-tracing feature).
 * Function instrumentation is now recorded to superluminal

## 0.1.5
 * More info in readme, no functional change

## 0.1.4
 * Fix the color passed to superluminal so that scopes are default-colored

## 0.1.3
 * Re-export the profiler crates, simplifying changes needed in end-user's cargo.toml

## 0.1.2
 * Remove unintended and unnecessary dependencies from the procmacro crate
 * Republish the bindings crate mainly to fix readme typos and add a bit more info about the exposed APIs

## 0.1.1
 * Add profiling::function procmacro
 * Add profiling::register_thread!()
 * Add profiling::finish_frame!()
 * Add support for superluminal
 * Fixed incorrect usage of span!() that affected tracy captures
 * More examples, improved documentation

## 0.1.0
 * Initial release