From 1f096ce187603aa8ad6e067a47171e9b741f9995 Mon Sep 17 00:00:00 2001 From: YangKeao Date: Thu, 21 Apr 2022 00:06:13 +0800 Subject: [PATCH] Bump version to 0.8 (#118) * Bump version to 0.8 Signed-off-by: YangKeao * add CHANGELOG for #110 Signed-off-by: YangKeao --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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`.