diff --git a/CHANGELOG.md b/CHANGELOG.md index 5306f264..9fecc12d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0] - 2022-04-20 + +### Changed +- Update prost from 0.9 to 0.10 (#113, #114, #115) + +### Fixed +- Fix pthread_getname_np not available on musl (#110) + ## [0.7.0] - 2022-03-08 ### Added diff --git a/Cargo.toml b/Cargo.toml index 070f9b05..45b54b57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pprof" -version = "0.7.0" +version = "0.8.0" authors = ["Yang Keao "] edition = "2021" license = "Apache-2.0" diff --git a/README.md b/README.md index cb42c36d..2aaeb6d2 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ FRAME: backtrace::backtrace::trace::h3e91a3123a3049a5 -> FRAME: pprof::profiler: ## Flamegraph ```toml -pprof = { version = "0.7", features = ["flamegraph"] } +pprof = { version = "0.8", features = ["flamegraph"] } ``` If `flamegraph` feature is enabled, you can generate flamegraph from the report. `Report` struct has a method `flamegraph` which can generate flamegraph and write it into a `Write`.