Skip to content

Commit 03a352f

Browse files
authored
Merge pull request #152 from wesleywiser/9.1_release
Update for 9.1 release
2 parents 61e3581 + 681c8c6 commit 03a352f

File tree

9 files changed

+26
-8
lines changed

9 files changed

+26
-8
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [9.1.0] - 2021-02-19
4+
### Added
5+
- `measureme`: Add support for using hardware performance counters instead of wall-clock times. ([GH-143])
6+
- `summarize`: Add `aggregate` sub-command for analyzing sets of profiles ([GH-129])
7+
8+
### Changed
9+
- `analyzeme`: Provide functions to decode paged buffer data from memory ([GH-142])
10+
- `analyzeme`: Fix blocked events not being counted in total invocation count ([GH-148])
11+
- `analyzeme`: Return error instead of panicking if the input file is too small ([GH-151])
12+
- Cleanup intra-doc links ([GH-146])
13+
314
## [9.0.0] - 2020-10-07
415
### Added
516
- `measureme`: Added a function to create `EventId`s with multiple arguments ([GH-138])
@@ -72,6 +83,7 @@
7283

7384
## [0.2.0] - 2019-04-10
7485

86+
[9.1.0]: https://github.com/rust-lang/measureme/releases/tag/9.1.0
7587
[9.0.0]: https://github.com/rust-lang/measureme/releases/tag/9.0.0
7688
[0.8.0]: https://github.com/rust-lang/measureme/releases/tag/0.8.0
7789
[0.7.1]: https://github.com/rust-lang/measureme/releases/tag/0.7.1
@@ -108,6 +120,12 @@
108120
[GH-116]: https://github.com/rust-lang/measureme/pull/116
109121
[GH-119]: https://github.com/rust-lang/measureme/pull/119
110122
[GH-123]: https://github.com/rust-lang/measureme/pull/123
123+
[GH-129]: https://github.com/rust-lang/measureme/pull/129
111124
[GH-132]: https://github.com/rust-lang/measureme/pull/132
112125
[GH-137]: https://github.com/rust-lang/measureme/pull/137
113126
[GH-138]: https://github.com/rust-lang/measureme/pull/138
127+
[GH-142]: https://github.com/rust-lang/measureme/pull/142
128+
[GH-143]: https://github.com/rust-lang/measureme/pull/143
129+
[GH-146]: https://github.com/rust-lang/measureme/pull/146
130+
[GH-148]: https://github.com/rust-lang/measureme/pull/148
131+
[GH-151]: https://github.com/rust-lang/measureme/pull/151

analyzeme/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "analyzeme"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crox"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>"]
55
edition = "2018"
66

flamegraph/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flamegraph"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

measureme/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "measureme"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
description = "Support crate for rustc's self-profiling feature"

mmview/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmview"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

stack_collapse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stack_collapse"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

summarize/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "summarize"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

version_checker/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "version_checker"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)