Skip to content

Commit

Permalink
Merge pull request #152 from wesleywiser/9.1_release
Browse files Browse the repository at this point in the history
Update for 9.1 release
  • Loading branch information
wesleywiser authored Feb 19, 2021
2 parents 61e3581 + 681c8c6 commit 03a352f
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion analyzeme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "analyzeme"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crox"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion flamegraph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flamegraph"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion measureme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "measureme"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
description = "Support crate for rustc's self-profiling feature"
Expand Down
2 changes: 1 addition & 1 deletion mmview/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mmview"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion stack_collapse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stack_collapse"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion summarize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summarize"
version = "9.0.0"
version = "9.1.0"
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion version_checker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "version_checker"
version = "9.0.0"
version = "9.1.0"
authors = ["Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 03a352f

Please sign in to comment.