From 7818928239c567ba2048b940c78673e3eaa10b19 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Sat, 8 Jun 2024 10:20:01 +0200 Subject: [PATCH] Update CHANGELOGs --- crash-context/CHANGELOG.md | 3 +++ crash-handler/CHANGELOG.md | 3 +++ sadness-generator/CHANGELOG.md | 3 +++ 3 files changed, 9 insertions(+) diff --git a/crash-context/CHANGELOG.md b/crash-context/CHANGELOG.md index 666ba89..01132f5 100644 --- a/crash-context/CHANGELOG.md +++ b/crash-context/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Changed +- Update MSRV to 1.62.0 + ## [0.6.1] - 2023-06-19 ### Added - [PR#76](https://github.com/EmbarkStudios/crash-handling/pull/76) added support for `i686-linux-android` and `x86_64-linux-android`. Thanks [@gabrielesvelto](https://github.com/gabrielesvelto)! diff --git a/crash-handler/CHANGELOG.md b/crash-handler/CHANGELOG.md index 5d796d6..9bdd943 100644 --- a/crash-handler/CHANGELOG.md +++ b/crash-handler/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Added +- [PR#86](https://github.com/EmbarkStudios/crash-handling/pull/86) (carrying on from [PR#85](https://github.com/EmbarkStudios/crash-handling/pull/85)) added support for [vectored exception handlers](https://learn.microsoft.com/en-us/windows/win32/debug/vectored-exception-handling) on Windows, which can catch heap corruption exceptions that the vanilla exception handler cannot catch. Thanks [Tom!](https://github.com/h3r2tic)! + ## [0.6.1] - 2024-01-29 ### Added - [PR#81](https://github.com/EmbarkStudios/crash-handling/pull/81) resolved [#79](https://github.com/EmbarkStudios/crash-handling/issues/79) by adding `make_single_crash_event`. diff --git a/sadness-generator/CHANGELOG.md b/sadness-generator/CHANGELOG.md index 22101f5..74c7a61 100644 --- a/sadness-generator/CHANGELOG.md +++ b/sadness-generator/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Changed +- Update MSRV to 1.62.0 + ## [0.5.0] - 2022-11-17 ### Changed - [PR#63](https://github.com/EmbarkStudios/crash-handling/pull/63) added `SadnessFlavor::Abort` to Windows, and `raise_abort` now uses `libc::abort` instead of `std::process::abort` to have consistent behavior between all targets.