diff --git a/Cargo.lock b/Cargo.lock index 65ed0d0..a7c2027 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,7 +178,7 @@ dependencies = [ [[package]] name = "crash-handler" -version = "0.6.1" +version = "0.6.2" dependencies = [ "cfg-if", "crash-context 0.6.1", diff --git a/crash-handler/CHANGELOG.md b/crash-handler/CHANGELOG.md index 9bdd943..8b46fe0 100644 --- a/crash-handler/CHANGELOG.md +++ b/crash-handler/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.6.2] - 2024-06-08 ### 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)! @@ -76,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial pass of crash-context, Linux only -[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.6.1...HEAD +[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.6.2...HEAD +[0.6.2]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.6.1...crash-handler-0.6.2 [0.6.1]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.6.0...crash-handler-0.6.1 [0.6.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.5.1...crash-handler-0.6.0 [0.5.1]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.5.0...crash-handler-0.5.1 diff --git a/crash-handler/Cargo.toml b/crash-handler/Cargo.toml index 8489542..ea7fce0 100644 --- a/crash-handler/Cargo.toml +++ b/crash-handler/Cargo.toml @@ -2,7 +2,7 @@ name = "crash-handler" description = "Allows running of user code during crash events" repository = "https://github.com/EmbarkStudios/crash-handling" -version = "0.6.1" +version = "0.6.2" authors = ["Embark "] edition = "2021" license = "MIT OR Apache-2.0"