File: Changelog.md

package info (click to toggle)
rust-tracing-durations-export 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 400 kB
  • sloc: python: 260; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 843 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Changelog

## 0.3.0

- Update svg to 0.17.0

## 0.2.0

- Show whether an active span is running on and blocking the main thread or whether it's running in a threadpool with
  `tokio::task::spawn_blocking`. `--color-top`/`color_top` gets split into two colors, color top main and color top
  threadpool. The former is used when the task is running on the main thread, the latter is used when it's offloaded to
  the threadpool.
- Colorblind friendly default colors (http://www.cookbook-r.com/Graphs/Colors_(ggplot2)/#a-colorblind-friendly-palette):
  - color top blocking: #E69F0088
  - color top threadpool: #56B4E988
  - color bottom: #E69F0088

## 0.1.2

- Add `--inline-field` / `inline_field` option: If the is only one field, display its value inline. Since the text is
  not limited to its box, text can overlap and become unreadable.