From 4939f73f0cc2e8d92e3c2c50c9d02d6d4c205a86 Mon Sep 17 00:00:00 2001 From: YangKeao Date: Wed, 27 Sep 2023 20:13:26 +0800 Subject: [PATCH] Bump version to v0.13.0 (#226) Signed-off-by: Yang Keao --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20786ae5..631a2c79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.0] - 2023-09-27 + +### Changed +- Upgrade `prost`, `prost-derive`, `prost-build` to 0.12 (#223) + ## [0.12.1] - 2023-07-25 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index afec9a5d..c9355b8d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -678,7 +678,7 @@ dependencies = [ [[package]] name = "pprof" -version = "0.12.1" +version = "0.13.0" dependencies = [ "backtrace", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 10d14962..7d9f0378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pprof" -version = "0.12.1" +version = "0.13.0" authors = ["Yang Keao "] edition = "2021" license = "Apache-2.0" diff --git a/README.md b/README.md index 3157599d..385991bb 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ FRAME: backtrace::backtrace::trace::h3e91a3123a3049a5 -> FRAME: pprof::profiler: ## Flamegraph ```toml -pprof = { version = "0.12", features = ["flamegraph"] } +pprof = { version = "0.13", 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`.