Skip to content

Commit 93ee6da

Browse files
authoredJun 24, 2022
Merge pull request #197 from wesleywiser/new_release
Prepare for 10.1 release
2 parents 9495520 + 9322292 commit 93ee6da

File tree

11 files changed

+26
-12
lines changed

11 files changed

+26
-12
lines changed
 

‎CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
# Changelog
22

3+
## [10.1.0] - 2022-06-24
4+
5+
### Changed
6+
- Change install instructions to use stable branch ([GH-189])
7+
- `analyzeme`: Remove some unused dependencies ([GH-192])
8+
- `decodeme`: Generate nicer panic messages for incomplete data files ([GH-193])
9+
- Fix build warnings from Rust 2018 idioms ([GH-194])
10+
- `measureme`: Allow capturing hardware performance counters on stable compilers ([GH-195])
11+
312
## [10.0.0] - 2021-10-06
413

514
### Changed
615
- `analyzeme`: Version-specific parts split out into `decodeme` crate. ([GH-181])
7-
- `analyzeme`: The crate now supports load both v7 and v8 of the file format. ([GH-181])
16+
- `analyzeme`: The crate now supports loading both v7 and v8 of the file format. ([GH-181])
817

918
## [9.2.0] - 2021-09-13
1019
### Changed
@@ -155,4 +164,9 @@
155164
[GH-156]: https://github.com/rust-lang/measureme/pull/156
156165
[GH-159]: https://github.com/rust-lang/measureme/pull/159
157166
[GH-180]: https://github.com/rust-lang/measureme/pull/180
158-
[GH-181]: https://github.com/rust-lang/measureme/pull/181
167+
[GH-181]: https://github.com/rust-lang/measureme/pull/181
168+
[GH-189]: https://github.com/rust-lang/measureme/pull/189
169+
[GH-192]: https://github.com/rust-lang/measureme/pull/192
170+
[GH-193]: https://github.com/rust-lang/measureme/pull/193
171+
[GH-194]: https://github.com/rust-lang/measureme/pull/194
172+
[GH-195]: https://github.com/rust-lang/measureme/pull/195

‎analyzeme/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "analyzeme"
3-
version = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>", "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 = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>"]
55
edition = "2018"
66

‎decodeme/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "decodeme"
3-
version = "10.0.0"
3+
version = "10.1.0"
44
edition = "2018"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

‎flamegraph/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flamegraph"
3-
version = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>", "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 = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>", "Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
description = "Support crate for rustc's self-profiling feature"

‎mmedit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmedit"
3-
version = "10.0.0"
3+
version = "10.1.0"
44
edition = "2018"
55

66
[dependencies]

‎mmview/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmview"
3-
version = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>", "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 = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>", "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 = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Wesley Wiser <wwiser@gmail.com>", "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 = "10.0.0"
3+
version = "10.1.0"
44
authors = ["Michael Woerister <michaelwoerister@posteo>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)