Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Apr 3, 2023
1 parent 1201c2c commit d62b829
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion crash-context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.6.0] - 2023-04-03
### Changed
- [PR#70](https://github.com/EmbarkStudios/crash-handling/pull/70) removed the `winapi` dependency in favor of embedded bindings to avoid dependencies.
- [PR#70](https://github.com/EmbarkStudios/crash-handling/pull/70) removed the asm implementations for Windows CPU context retrieval in favor of using `RtlCaptureContext`. This means that floating state is not captured, but is otherwise and improvement.
Expand Down Expand Up @@ -57,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial pass of crash-context, Linux only

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.1...HEAD
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.6.0...HEAD
[0.6.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.1...crash-context-0.6.0
[0.5.1]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.0...crash-context-0.5.1
[0.5.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.4.0...crash-context-0.5.0
[0.4.0]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...crash-context-0.4.0
Expand Down
2 changes: 1 addition & 1 deletion crash-context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crash-context"
version = "0.5.1"
version = "0.6.0"
description = "Provides portable types containing target specific contextual information at the time of a crash"
repository = "https://github.com/EmbarkStudios/crash-handling"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion crash-handler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ debug-print = []
cfg-if = "1.0"
# Definition of a portable crash-context that can be shared between various
# crates
crash-context = { version = "0.5", path = "../crash-context" }
crash-context = { version = "0.6", path = "../crash-context" }
# Wrapper around libc
libc = "0.2"
# Nicer sync primitives
Expand Down
2 changes: 1 addition & 1 deletion minidumper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ keywords = ["crash", "minidump", "ipc", "out-of-process"]
[dependencies]
# Nicer cfg handling
cfg-if = "1.0"
crash-context = { version = "0.5", path = "../crash-context" }
crash-context = { version = "0.6", path = "../crash-context" }
libc = "0.2"
# Basic log emitting
log = "0.4"
Expand Down

0 comments on commit d62b829

Please sign in to comment.