Skip to content

Commit 9e5a38c

Browse files
committed
chore: Release
1 parent 9d64cd1 commit 9e5a38c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

crash-context/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
<!-- next-header -->
1111
## [Unreleased] - ReleaseDate
12+
## [0.5.0] - 2022-11-17
1213
### Added
1314
- [PR#62](https://github.com/EmbarkStudios/crash-handling/pull/62) added a replacement implementation of `RtlCaptureContext`, and defines its own `CONTEXT` structure. This was needed due to both `winapi` and `windows-sys` incorrectly defining the `CONTEXT` and related structures on both x86_64 and aarch64 to not be correctly aligned, as well as `RtlCaptureContext` not actually capturing the floating point and vector state.
1415

@@ -48,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4849
- Initial pass of crash-context, Linux only
4950

5051
<!-- next-url -->
51-
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.4.0...HEAD
52+
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.0...HEAD
53+
[0.5.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.4.0...crash-context-0.5.0
5254
[0.4.0]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...crash-context-0.4.0
5355
[0.3.1]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.0...0.3.1
5456
[0.3.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-v0.1.0...0.3.0

crash-context/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crash-context"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Provides portable types containing target specific contextual information at the time of a crash"
55
repository = "https://github.com/EmbarkStudios/crash-handling"
66
authors = [

crash-handler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ debug-print = []
2222
cfg-if = "1.0"
2323
# Definition of a portable crash-context that can be shared between various
2424
# crates
25-
crash-context = { version = "0.4", path = "../crash-context" }
25+
crash-context = { version = "0.5", path = "../crash-context" }
2626
# Wrapper around libc
2727
libc = "0.2"
2828
# Nicer sync primitives

0 commit comments

Comments
 (0)