From 923dad2e272635cbd8fd00d57f7eeddc5a82e07e Mon Sep 17 00:00:00 2001 From: Yang Keao Date: Fri, 8 Nov 2024 10:25:36 +0800 Subject: [PATCH] Bump version to v0.14 Signed-off-by: Yang Keao --- CHANGELOG.md | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24a11de1..283aac5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## Unreleased +## [0.14.0] - 2023-11-08 ### Fixed - Fix the alignment of the collector and validate function (#255) diff --git a/Cargo.lock b/Cargo.lock index d8e7c221..1a4e1168 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -708,7 +708,7 @@ dependencies = [ [[package]] name = "pprof" -version = "0.13.0" +version = "0.14.0" dependencies = [ "aligned-vec", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index f7b3bbd0..72218ae1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pprof" -version = "0.13.0" +version = "0.14.0" authors = ["Yang Keao "] edition = "2021" license = "Apache-2.0" diff --git a/README.md b/README.md index 385991bb..a5be80b0 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ FRAME: backtrace::backtrace::trace::h3e91a3123a3049a5 -> FRAME: pprof::profiler: ## Flamegraph ```toml -pprof = { version = "0.13", features = ["flamegraph"] } +pprof = { version = "0.14", 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`.