diff --git a/CHANGELOG.md b/CHANGELOG.md index 0870cad..bc11f8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [9.1.2] - 2021-05-21 +### Added +- `measureme`: Allow recording interval events without using the drop guard ([GH-159]) + ## [9.1.1] - 2021-04-23 ### Changed - `crox`: Update the `--dir` flag to look for the correct file extension for traces ([GH-155]) @@ -88,6 +92,7 @@ ## [0.2.0] - 2019-04-10 +[9.1.2]: https://github.com/rust-lang/measureme/releases/tag/9.1.2 [9.1.1]: https://github.com/rust-lang/measureme/releases/tag/9.1.1 [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 @@ -137,3 +142,4 @@ [GH-151]: https://github.com/rust-lang/measureme/pull/151 [GH-155]: https://github.com/rust-lang/measureme/pull/155 [GH-156]: https://github.com/rust-lang/measureme/pull/156 +[GH-159]: https://github.com/rust-lang/measureme/pull/159 diff --git a/analyzeme/Cargo.toml b/analyzeme/Cargo.toml index 62fe98e..0a50faa 100644 --- a/analyzeme/Cargo.toml +++ b/analyzeme/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "analyzeme" -version = "9.1.1" +version = "9.1.2" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crox/Cargo.toml b/crox/Cargo.toml index d7762cc..020d855 100644 --- a/crox/Cargo.toml +++ b/crox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crox" -version = "9.1.1" +version = "9.1.2" authors = ["Wesley Wiser "] edition = "2018" diff --git a/flamegraph/Cargo.toml b/flamegraph/Cargo.toml index 43b0614..377e116 100644 --- a/flamegraph/Cargo.toml +++ b/flamegraph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flamegraph" -version = "9.1.1" +version = "9.1.2" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/measureme/Cargo.toml b/measureme/Cargo.toml index 1fb4b32..191f81e 100644 --- a/measureme/Cargo.toml +++ b/measureme/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "measureme" -version = "9.1.1" +version = "9.1.2" 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 184b02c..71acb58 100644 --- a/mmview/Cargo.toml +++ b/mmview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmview" -version = "9.1.1" +version = "9.1.2" 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 01ca116..b278ae0 100644 --- a/stack_collapse/Cargo.toml +++ b/stack_collapse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stack_collapse" -version = "9.1.1" +version = "9.1.2" authors = ["Wesley Wiser ", "Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/summarize/Cargo.toml b/summarize/Cargo.toml index 1605d6e..f713118 100644 --- a/summarize/Cargo.toml +++ b/summarize/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "summarize" -version = "9.1.1" +version = "9.1.2" 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 725fb7a..3137eaf 100644 --- a/version_checker/Cargo.toml +++ b/version_checker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version_checker" -version = "9.1.1" +version = "9.1.2" authors = ["Michael Woerister "] edition = "2018" license = "MIT OR Apache-2.0"