diff --git a/CHANGELOG.md b/CHANGELOG.md index 5efab977..cfc6689c 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.0] - 2024-08-20 ### Changed - [PR#118](https://github.com/rust-minidump/minidump-writer/pull/118) resolved [#72](https://github.com/rust-minidump/minidump-writer/issues/72) by adding support for reading process memory via `process_vm_readv` and `/proc/{pid}/mem`, in addition to the original `PTRACE_PEEKDATA`. This gives significant performance benefits as memory can now be read in blocks of arbitrary size instead of word-by-word with ptrace. - [PR#128](https://github.com/rust-minidump/minidump-writer/pull/128) and [PR#133](https://github.com/rust-minidump/minidump-writer/pull/133) updated the lockfile. @@ -150,7 +151,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.9.0...HEAD +[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.10.0...HEAD +[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 [0.8.8]: https://github.com/rust-minidump/minidump-writer/compare/0.8.7...0.8.8 diff --git a/Cargo.lock b/Cargo.lock index 0c9f0823..bc0609a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1259,7 +1259,7 @@ dependencies = [ [[package]] name = "minidump-writer" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bitflags 2.6.0", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index 61d5bc8d..27f90212 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidump-writer" -version = "0.9.0" +version = "0.10.0" authors = ["Martin Sirringhaus"] description = "Rust rewrite of Breakpad's minidump_writer" repository = "https://github.com/rust-minidump/minidump-writer"