From b095f5ba5781a56bbe5270e04697b43b9cf8c3d0 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Sat, 20 Jul 2024 12:45:59 +0200 Subject: [PATCH] Release 0.9.0 --- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c02e5d..672ce3b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.9.0] - 2024-07-20 ### Fixed - [PR#117](https://github.com/rust-minidump/minidump-writer/pull/117) resolved [#79](https://github.com/rust-minidump/minidump-writer/issues/79) by enabling reading of a module's build id and soname directly from the mapped process rather than relying on file reading, though that is still used as a fallback. @@ -141,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release, including basic support for `x86_64-unknown-linux-gnu/musl` and `x86_64-pc-windows-msvc` -[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.8.9...HEAD +[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.9.0...HEAD +[0.9.0]: https://github.com/rust-minidump/minidump-writer/compare/0.8.9...0.9.0 [0.8.9]: https://github.com/rust-minidump/minidump-writer/compare/0.8.8...0.8.9 [0.8.8]: https://github.com/rust-minidump/minidump-writer/compare/0.8.7...0.8.8 [0.8.7]: https://github.com/rust-minidump/minidump-writer/compare/0.8.6...0.8.7 diff --git a/Cargo.lock b/Cargo.lock index 5bfce59a..8770dd7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1249,7 +1249,7 @@ dependencies = [ [[package]] name = "minidump-writer" -version = "0.8.9" +version = "0.9.0" dependencies = [ "bitflags 2.6.0", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index ca79b0d7..5e4212bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidump-writer" -version = "0.8.9" +version = "0.9.0" authors = ["Martin Sirringhaus"] description = "Rust rewrite of Breakpad's minidump_writer" repository = "https://github.com/rust-minidump/minidump-writer"