From 1751c7a9333981b8f58c4e7135e404f9b4a0f920 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Tue, 15 Nov 2022 13:35:07 +0100 Subject: [PATCH] Release 0.6.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52223c6f..f5f90664 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.6.0] - 2022-11-15 ### 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`. @@ -54,7 +55,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.5.0...HEAD +[Unreleased]: https://github.com/rust-minidump/minidump-writer/compare/0.6.0...HEAD +[0.6.0]: https://github.com/rust-minidump/minidump-writer/compare/0.5.0...0.6.0 [0.5.0]: https://github.com/rust-minidump/minidump-writer/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/rust-minidump/minidump-writer/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/rust-minidump/minidump-writer/compare/0.3.0...0.3.1 diff --git a/Cargo.toml b/Cargo.toml index d5597d71..94ba7268 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidump-writer" -version = "0.5.0" +version = "0.6.0" authors = ["Martin Sirringhaus"] description = "Rust rewrite of Breakpad's minidump_writer" repository = "https://github.com/rust-minidump/minidump-writer"