diff --git a/CHANGELOG.md b/CHANGELOG.md index c858d50c..398efdd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ 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.12.0] - 2023-07-03 + +### Added +- Support building `pprof-rs` for `android` target (#202) +- Support building `pprof-rs` for `freebsd` target (#213) + +### Changed +- Upgrade `criterion` to 0.5 (#212) +- Bump the MSRV to 1.64.0 (#204) + +### Fixed +- Hide `perf_signal_handler` frames on macOS (#207) + ## [0.11.1] - 2023-02-21 ### Added diff --git a/Cargo.toml b/Cargo.toml index 01088b62..dad4043b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pprof" -version = "0.11.1" +version = "0.12.0" authors = ["Yang Keao "] edition = "2021" license = "Apache-2.0" diff --git a/README.md b/README.md index f0f7803e..3157599d 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ FRAME: backtrace::backtrace::trace::h3e91a3123a3049a5 -> FRAME: pprof::profiler: ## Flamegraph ```toml -pprof = { version = "0.11", features = ["flamegraph"] } +pprof = { version = "0.12", 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`.