From abb2dc7e2c05df3e7bb97c9ebc4eab9762e80853 Mon Sep 17 00:00:00 2001 From: Ariel Ben-Yehuda Date: Thu, 13 Nov 2025 17:18:39 +0000 Subject: [PATCH] release: release async-profiler-agent 0.1.10 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10c63d5..7732da3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.1.10](https://github.com/async-profiler/rust-agent/compare/v0.1.9...v0.1.10) - 2025-11-13 + +### Added + +- add parsing of CPU and Memory fields behind unstable feature flag, will be stable in the next release ([#106](https://github.com/async-profiler/rust-agent/pull/106)) +- add constructors for agent metadata types ([#106](https://github.com/async-profiler/rust-agent/pull/106)) + +### Fixed + +- Fix compilation on macOS ([#105](https://github.com/async-profiler/rust-agent/pull/105)) + ## [0.1.9](https://github.com/async-profiler/rust-agent/compare/v0.1.8...v0.1.9) - 2025-10-16 ### Added diff --git a/Cargo.lock b/Cargo.lock index 3e488b8..69f9041 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,7 +109,7 @@ dependencies = [ [[package]] name = "async-profiler-agent" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 2f052f2..66565c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-profiler-agent" -version = "0.1.9" +version = "0.1.10" description = "Rust agent for async-profiler" license = "Apache-2.0" repository = "https://github.com/async-profiler/rust-agent"