diff --git a/CHANGELOG.md b/CHANGELOG.md index da7774f..f26bff8 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.10.1] - 2024-09-20 ### Fixed - [PR#129](https://github.com/rust-minidump/minidump-writer/pull/129) added checking of additions to ensure invalid memory offsets are gracefully handled. - [PR#135](https://github.com/rust-minidump/minidump-writer/pull/135) resolved [#134](https://github.com/rust-minidump/minidump-writer/issues/134) by attempting to read the executables build id from the mapped file if it could not be retrieved from process memory. @@ -156,7 +157,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.10.0...HEAD +[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.10.1...HEAD +[0.10.1]: https://github.com/rust-minidump/minidump-writer/compare/0.10.0...0.10.1 [0.10.0]: https://github.com/rust-minidump/minidump-writer/compare/0.9.0...0.10.0 [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 diff --git a/Cargo.lock b/Cargo.lock index bc0609a..f58e7f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1259,7 +1259,7 @@ dependencies = [ [[package]] name = "minidump-writer" -version = "0.10.0" +version = "0.10.1" dependencies = [ "bitflags 2.6.0", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index f734437..f78be2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidump-writer" -version = "0.10.0" +version = "0.10.1" authors = ["Martin Sirringhaus"] description = "Rust rewrite of Breakpad's minidump_writer" repository = "https://github.com/rust-minidump/minidump-writer"