From 8682ad6338953f43aa0376ac527927e97bcd7b86 Mon Sep 17 00:00:00 2001 From: YangKeao Date: Mon, 27 Jun 2022 14:33:49 +0800 Subject: [PATCH] Bump version to v0.10.0 Signed-off-by: YangKeao --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2e07e1..9d4fbc73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0] - 2022-06-27 + ### Changed - Remove `backtrace-rs` feature, as the default choice when not specified (#130) diff --git a/Cargo.toml b/Cargo.toml index fd1df6c4..1c113036 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pprof" -version = "0.9.1" +version = "0.10.0" authors = ["Yang Keao "] edition = "2021" license = "Apache-2.0" diff --git a/README.md b/README.md index 156ff5bb..68d9e3d8 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ FRAME: backtrace::backtrace::trace::h3e91a3123a3049a5 -> FRAME: pprof::profiler: ## Flamegraph ```toml -pprof = { version = "0.9", features = ["flamegraph"] } +pprof = { version = "0.10", 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`.