From b8c09706ab1c13231aa7544ab9be151aa07b2543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Thu, 5 Sep 2024 11:17:04 -0700 Subject: [PATCH] capi: Bump version to 0.1.0-rc.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change bumps the blazesym-c's version to 0.1.0-rc.1. The following notable changes have been made since 0.1.0-rc.0: - Added 'procmap_query_ioctl' attribute to blaze_normalizer_opts - Renamed blaze_result to blaze_syms - Renamed blaze_result_free to blaze_syms_free - Renamed 'cache_maps' attribute of blaze_normalizer_opts to 'cache_vmas' - Introduced blaze_supports_procmap_query helper - Bumped blazesym dependency to 0.2.0-rc.1 Signed-off-by: Daniel Müller --- CHANGELOG.md | 2 +- capi/CHANGELOG.md | 2 +- capi/Cargo.toml | 2 +- capi/include/blazesym.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca76450a..668c6396 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ - Added `is_procmap_query_supported` function to `helper` module - Adjusted normalization logic to not fail overall operation on build ID read failure -- Added support for file based symbolization support on the Windows operating +- Added support for file based symbolization on the Windows operating system - Improved performance for parsing Breakpad files - Made sure to not emit "self" component in normalized paths when diff --git a/capi/CHANGELOG.md b/capi/CHANGELOG.md index 5b1246bd..79784fb3 100644 --- a/capi/CHANGELOG.md +++ b/capi/CHANGELOG.md @@ -1,4 +1,4 @@ -Unreleased +0.1.0-rc.1 ---------- - Added `procmap_query_ioctl` attribute to `blaze_normalizer_opts` - Renamed `blaze_result` to `blaze_syms` diff --git a/capi/Cargo.toml b/capi/Cargo.toml index 6add2683..cc9138ca 100644 --- a/capi/Cargo.toml +++ b/capi/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "blazesym-c" description = "C bindings for blazesym" -version = "0.1.0-rc.0" +version = "0.1.0-rc.1" edition = "2021" rust-version = "1.65" authors = ["Daniel Müller "] diff --git a/capi/include/blazesym.h b/capi/include/blazesym.h index f6fb33fe..e2d0fe6e 100644 --- a/capi/include/blazesym.h +++ b/capi/include/blazesym.h @@ -1,7 +1,7 @@ /* * Please refer to the documentation hosted at * - * https://docs.rs/blazesym-c/0.1.0-rc.0 + * https://docs.rs/blazesym-c/0.1.0-rc.1 */