|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## [0.8.0] - 2020-10-01 |
| 4 | +### Added |
| 5 | +- `analyzeme`: Profiling data can now be constructed directly from memory without having to touch the filesystem ([GH-123]) |
| 6 | +- `summarize`: A new "Time" column shows the total amount of time spent executing the query including sub-queries ([GH-109]) |
| 7 | + |
| 8 | +### Changed |
| 9 | +- `crox`: Event argument data is now included in the output file ([GH-108]) |
| 10 | +- `measureme`: Trace data is now recorded into a single file instead of three files ([GH-132]) |
| 11 | +- `mmview`: Do not panic when there are no events ([GH-119]) |
| 12 | +- `summarize`: Time spent in incremental result cache loading and query blocking now counts toward self-time for the query ([GH-104]) |
| 13 | +- `summarize`: Improve support for loading trace files created by programs other than rustc ([GH-116]) |
| 14 | +- `summarize`: Only show the "Cache hits", "Blocked Time" and "Incremental load time" columns if that data is present in the trace ([GH-116]) |
| 15 | + |
| 16 | +## [0.7.1] - 2020-01-02 |
| 17 | +### Changed |
| 18 | +- `measureme`: Fix compilation error on big endian systems ([GH-103]) |
| 19 | + |
| 20 | +## [0.7.0] - 2019-12-18 |
| 21 | +### Changed |
| 22 | +- `measureme`: Events can now have "arguments" which record additional data about the event ([GH-101]) |
| 23 | + |
3 | 24 | ## [0.6.0] - 2019-12-11
|
4 | 25 | ### Added
|
5 | 26 | - `measureme`: Added `SerializationSink::write_bytes_atomic` that optimizes handling of existing buffers ([GH-97])
|
|
43 | 64 |
|
44 | 65 | ## [0.2.0] - 2019-04-10
|
45 | 66 |
|
| 67 | +[0.8.0]: https://github.com/rust-lang/measureme/releases/tag/0.8.0 |
| 68 | +[0.7.1]: https://github.com/rust-lang/measureme/releases/tag/0.7.1 |
| 69 | +[0.7.0]: https://github.com/rust-lang/measureme/releases/tag/0.7.0 |
| 70 | +[0.6.0]: https://github.com/rust-lang/measureme/releases/tag/0.6.0 |
| 71 | +[0.5.0]: https://github.com/rust-lang/measureme/releases/tag/0.5.0 |
46 | 72 | [0.4.0]: https://github.com/rust-lang/measureme/releases/tag/0.4.0
|
47 | 73 | [0.3.0]: https://github.com/rust-lang/measureme/releases/tag/0.3.0
|
48 | 74 | [0.2.1]: https://github.com/rust-lang/measureme/releases/tag/0.2.1
|
|
65 | 91 | [GH-93]: https://github.com/rust-lang/measureme/pull/93
|
66 | 92 | [GH-97]: https://github.com/rust-lang/measureme/pull/97
|
67 | 93 | [GH-98]: https://github.com/rust-lang/measureme/pull/98
|
| 94 | +[GH-101]: https://github.com/rust-lang/measureme/pull/101 |
| 95 | +[GH-103]: https://github.com/rust-lang/measureme/pull/103 |
| 96 | +[GH-104]: https://github.com/rust-lang/measureme/pull/104 |
| 97 | +[GH-108]: https://github.com/rust-lang/measureme/pull/108 |
| 98 | +[GH-109]: https://github.com/rust-lang/measureme/pull/109 |
| 99 | +[GH-116]: https://github.com/rust-lang/measureme/pull/116 |
| 100 | +[GH-119]: https://github.com/rust-lang/measureme/pull/119 |
| 101 | +[GH-123]: https://github.com/rust-lang/measureme/pull/123 |
| 102 | +[GH-132]: https://github.com/rust-lang/measureme/pull/132 |
0 commit comments