From 0bf4837585728303e965083c142903bc74590d54 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 21 Mar 2024 11:08:58 +0100 Subject: [PATCH] Release 0.8.8 --- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00f5d9b5..509f1ac8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.8.8] - 2024-03-21 ### Fixed - [PR#108](https://github.com/rust-minidump/minidump-writer/pull/108) resolved [#28](https://github.com/rust-minidump/minidump-writer/issues/28) by sending a `SIGSTOP` to the process that is about to be dumped to (hopefully) increase the robustness of the dumping process by reducing the chance of errors, particularly with regard to threads. This is done as a best effort, and will perform the old behavior if the process has not stopped within a timeout (by default 100ms), which can be overriden by the user. @@ -129,7 +130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release, including basic support for `x86_64-unknown-linux-gnu/musl` and `x86_64-pc-windows-msvc` -[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.8.7...HEAD +[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.8.8...HEAD +[0.8.8]: https://github.com/rust-minidump/minidump-writer/compare/0.8.7...0.8.8 [0.8.7]: https://github.com/rust-minidump/minidump-writer/compare/0.8.6...0.8.7 [0.8.6]: https://github.com/rust-minidump/minidump-writer/compare/0.8.5...0.8.6 [0.8.5]: https://github.com/rust-minidump/minidump-writer/compare/0.8.4...0.8.5 diff --git a/Cargo.lock b/Cargo.lock index c11316d3..836493b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1221,7 +1221,7 @@ dependencies = [ [[package]] name = "minidump-writer" -version = "0.8.7" +version = "0.8.8" dependencies = [ "bitflags 2.4.2", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index 36f4cb1b..d9f87378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidump-writer" -version = "0.8.7" +version = "0.8.8" authors = ["Martin Sirringhaus"] description = "Rust rewrite of Breakpad's minidump_writer" repository = "https://github.com/rust-minidump/minidump-writer"