diff --git a/Cargo.lock b/Cargo.lock index 2d9eaa2..65ed0d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,6 +159,8 @@ dependencies = [ [[package]] name = "crash-context" version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b85cef661eeca0c6675116310936972c520ebb0a33ddef16fd7efc957f4c1288" dependencies = [ "cfg-if", "libc", @@ -167,9 +169,7 @@ dependencies = [ [[package]] name = "crash-context" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b85cef661eeca0c6675116310936972c520ebb0a33ddef16fd7efc957f4c1288" +version = "0.6.2" dependencies = [ "cfg-if", "libc", @@ -181,7 +181,7 @@ name = "crash-handler" version = "0.6.1" dependencies = [ "cfg-if", - "crash-context 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crash-context 0.6.1", "libc", "mach2", "parking_lot", @@ -449,7 +449,7 @@ dependencies = [ "bitflags 2.4.2", "byteorder", "cfg-if", - "crash-context 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crash-context 0.6.1", "goblin", "libc", "log", @@ -469,7 +469,7 @@ name = "minidumper" version = "0.8.2" dependencies = [ "cfg-if", - "crash-context 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crash-context 0.6.1", "crash-handler", "libc", "log", diff --git a/crash-context/CHANGELOG.md b/crash-context/CHANGELOG.md index 01132f5..2c0eb4f 100644 --- a/crash-context/CHANGELOG.md +++ b/crash-context/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 ### Changed - Update MSRV to 1.62.0 @@ -71,7 +72,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-context-0.6.1...HEAD +[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.6.2...HEAD +[0.6.2]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.6.1...crash-context-0.6.2 [0.6.1]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.6.0...crash-context-0.6.1 [0.6.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.1...crash-context-0.6.0 [0.5.1]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.0...crash-context-0.5.1 diff --git a/crash-context/Cargo.toml b/crash-context/Cargo.toml index c2c2149..2bf8473 100644 --- a/crash-context/Cargo.toml +++ b/crash-context/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crash-context" -version = "0.6.1" +version = "0.6.2" description = "Provides portable types containing target specific contextual information at the time of a crash" repository = "https://github.com/EmbarkStudios/crash-handling" authors = [