From b304aacf55a9b152d82759e052b2629d70f49da0 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Fri, 21 Oct 2022 14:52:02 +0200 Subject: [PATCH] Release crash-handler-0.4.0 --- crash-handler/CHANGELOG.md | 4 +++- crash-handler/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/crash-handler/CHANGELOG.md b/crash-handler/CHANGELOG.md index 700f344..4d9d8a5 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.4.0] - 2022-10-21 ### Added - [PR#60](https://github.com/EmbarkStudios/crash-handling/pull/60) resolved [#59](https://github.com/EmbarkStudios/crash-handling/issues/59) by adding support for `PR_SET_PTRACER` before invoking the user callback, ensuring that an external process has permissions to perform `ptrace` operations on the crashing process, even if `/proc/sys/kernel/yama/ptrace_scope` is set to restricted (1), as this is the default for most newer distributions. @@ -50,7 +51,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.3.3...HEAD +[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.4.0...HEAD +[0.4.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.3.3...crash-handler-0.4.0 [0.3.3]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-0.3.2...crash-handler-0.3.3 [0.3.2]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...crash-handler-0.3.2 [0.3.1]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...0.3.1 diff --git a/crash-handler/Cargo.toml b/crash-handler/Cargo.toml index cb7cc50..34e5e85 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.3.3" +version = "0.4.0" authors = ["Embark "] edition = "2021" license = "MIT OR Apache-2.0"