From 66d5acf84936765f9b8a156561d88dee40e0e5cf Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Fri, 19 Feb 2021 11:46:36 -0500 Subject: [PATCH 1/2] Update CHANGELOG for 9.1 --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index af55e46..1870e5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [9.1.0] - 2021-02-19 +### Added +- `measureme`: Add support for using hardware performance counters instead of wall-clock times. ([GH-143]) +- `summarize`: Add `aggregate` sub-command for analyzing sets of profiles ([GH-129]) + +### Changed +- `analyzeme`: Provide functions to decode paged buffer data from memory ([GH-142]) +- `analyzeme`: Fix blocked events not being counted in total invocation count ([GH-148]) +- `analyzeme`: Return error instead of panicking if the input file is too small ([GH-151]) +- Cleanup intra-doc links ([GH-146]) + ## [9.0.0] - 2020-10-07 ### Added - `measureme`: Added a function to create `EventId`s with multiple arguments ([GH-138]) @@ -72,6 +83,7 @@ ## [0.2.0] - 2019-04-10 +[9.1.0]: https://github.com/rust-lang/measureme/releases/tag/9.1.0 [9.0.0]: https://github.com/rust-lang/measureme/releases/tag/9.0.0 [0.8.0]: https://github.com/rust-lang/measureme/releases/tag/0.8.0 [0.7.1]: https://github.com/rust-lang/measureme/releases/tag/0.7.1 @@ -108,6 +120,12 @@ [GH-116]: https://github.com/rust-lang/measureme/pull/116 [GH-119]: https://github.com/rust-lang/measureme/pull/119 [GH-123]: https://github.com/rust-lang/measureme/pull/123 +[GH-129]: https://github.com/rust-lang/measureme/pull/129 [GH-132]: https://github.com/rust-lang/measureme/pull/132 [GH-137]: https://github.com/rust-lang/measureme/pull/137 [GH-138]: https://github.com/rust-lang/measureme/pull/138 +[GH-142]: https://github.com/rust-lang/measureme/pull/142 +[GH-143]: https://github.com/rust-lang/measureme/pull/143 +[GH-146]: https://github.com/rust-lang/measureme/pull/146 +[GH-148]: https://github.com/rust-lang/measureme/pull/148 +[GH-151]: https://github.com/rust-lang/measureme/pull/151 From 681c8c6196cd22fffc73441a4f3fe9f7a6ae82d9 Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Fri, 19 Feb 2021 12:06:11 -0500 Subject: [PATCH 2/2] Update versions to 9.1 --- analyzeme/Cargo.toml | 2 +- crox/Cargo.toml | 2 +- flamegraph/Cargo.toml | 2 +- measureme/Cargo.toml | 2 +- mmview/Cargo.toml | 2 +- stack_collapse/Cargo.toml | 2 +- summarize/Cargo.toml | 2 +- version_checker/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/analyzeme/Cargo.toml b/analyzeme/Cargo.toml index c0ef15e..ffb6fa0 100644 --- a/analyzeme/Cargo.toml +++ b/analyzeme/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "analyzeme" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crox/Cargo.toml b/crox/Cargo.toml index 6f221c6..b6fe781 100644 --- a/crox/Cargo.toml +++ b/crox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crox" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser "] edition = "2018" diff --git a/flamegraph/Cargo.toml b/flamegraph/Cargo.toml index 6688160..1d9bba6 100644 --- a/flamegraph/Cargo.toml +++ b/flamegraph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flamegraph" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/measureme/Cargo.toml b/measureme/Cargo.toml index 161556c..03b049c 100644 --- a/measureme/Cargo.toml +++ b/measureme/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "measureme" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" description = "Support crate for rustc's self-profiling feature" diff --git a/mmview/Cargo.toml b/mmview/Cargo.toml index 2ac31e6..2bb3ade 100644 --- a/mmview/Cargo.toml +++ b/mmview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmview" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/stack_collapse/Cargo.toml b/stack_collapse/Cargo.toml index bb7a657..d6b29a7 100644 --- a/stack_collapse/Cargo.toml +++ b/stack_collapse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stack_collapse" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/summarize/Cargo.toml b/summarize/Cargo.toml index f7f1640..41a202b 100644 --- a/summarize/Cargo.toml +++ b/summarize/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summarize" -version = "9.0.0" +version = "9.1.0" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/version_checker/Cargo.toml b/version_checker/Cargo.toml index 926167f..93e21b1 100644 --- a/version_checker/Cargo.toml +++ b/version_checker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version_checker" -version = "9.0.0" +version = "9.1.0" authors = ["Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0"