From c0359fbb64a95105024f93c52c7e7be7f8f10c13 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 15 Nov 2022 13:11:14 +0100 Subject: [PATCH 1/3] Update dependencies --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ad102d6d..d5597d71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" byteorder = "1.3.2" cfg-if = "1.0" crash-context = "0.4" -memoffset = "0.6" +memoffset = "0.7" minidump-common = "0.14" scroll = "0.11" tempfile = "3.1.0" @@ -20,7 +20,7 @@ thiserror = "1.0.21" [target.'cfg(unix)'.dependencies] libc = "0.2.74" -goblin = "0.5" +goblin = "0.6" memmap2 = "0.5" [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies] From 5e2d044a643ff4eb302ff92b9c5fef4814c313bd Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 15 Nov 2022 13:18:10 +0100 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0005c5f..1fc2f41e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Changed +- [PR#60](https://github.com/rust-minidump/minidump-writer/pull/60) removed the dependency on `windows-sys` due the massive version churn, resolving [#58](https://github.com/rust-minidump/minidump-writer/issues/58). This should allow projects to more easily integrate this crate into their project without introducing multiple versions of transitive dependencies. +- [PR#62](https://github.com/rust-minidump/minidump-writer/pull/62) replaced `MDExceptionCodeLinux` with `minidump_common::ExceptionCodeLinux`. +- [PR#63](https://github.com/rust-minidump/minidump-writer/pull/63) updated dependencies. + ## [0.5.0] - 2022-10-21 ### Changed - [PR#53](https://github.com/rust-minidump/minidump-writer/pull/53) made the `mem_writer` and `dir_section` modules public. Thanks [@sage-msft](https://github.com/sage-msft)! From 06d2d5fc9bb4eb1807df01f8d5f15188839c9d1b Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 15 Nov 2022 13:18:53 +0100 Subject: [PATCH 3/3] Fix PR# --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fc2f41e..52223c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - [PR#60](https://github.com/rust-minidump/minidump-writer/pull/60) removed the dependency on `windows-sys` due the massive version churn, resolving [#58](https://github.com/rust-minidump/minidump-writer/issues/58). This should allow projects to more easily integrate this crate into their project without introducing multiple versions of transitive dependencies. - [PR#62](https://github.com/rust-minidump/minidump-writer/pull/62) replaced `MDExceptionCodeLinux` with `minidump_common::ExceptionCodeLinux`. -- [PR#63](https://github.com/rust-minidump/minidump-writer/pull/63) updated dependencies. +- [PR#64](https://github.com/rust-minidump/minidump-writer/pull/64) updated dependencies. ## [0.5.0] - 2022-10-21 ### Changed