Skip to content

Commit d62b829

Browse files
committed
chore: Release
1 parent 1201c2c commit d62b829

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
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.6.0] - 2023-04-03
1213
### Changed
1314
- [PR#70](https://github.com/EmbarkStudios/crash-handling/pull/70) removed the `winapi` dependency in favor of embedded bindings to avoid dependencies.
1415
- [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.
@@ -57,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5758
- Initial pass of crash-context, Linux only
5859

5960
<!-- next-url -->
60-
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.1...HEAD
61+
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.6.0...HEAD
62+
[0.6.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.1...crash-context-0.6.0
6163
[0.5.1]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.5.0...crash-context-0.5.1
6264
[0.5.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.4.0...crash-context-0.5.0
6365
[0.4.0]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...crash-context-0.4.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.5.1"
3+
version = "0.6.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.5", path = "../crash-context" }
25+
crash-context = { version = "0.6", path = "../crash-context" }
2626
# Wrapper around libc
2727
libc = "0.2"
2828
# Nicer sync primitives

minidumper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keywords = ["crash", "minidump", "ipc", "out-of-process"]
1919
[dependencies]
2020
# Nicer cfg handling
2121
cfg-if = "1.0"
22-
crash-context = { version = "0.5", path = "../crash-context" }
22+
crash-context = { version = "0.6", path = "../crash-context" }
2323
libc = "0.2"
2424
# Basic log emitting
2525
log = "0.4"

0 commit comments

Comments
 (0)