Skip to content

Commit e5ce4dd

Browse files
committed
Release crash-context-0.4.0
1 parent c87423b commit e5ce4dd

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.4.0] - 2022-07-21
1213
### Added
1314
- [PR#46](https://github.com/EmbarkStudios/crash-handling/pull/46) added support for unpacking `EXC_RESOURCE` exceptions on MacOS.
1415
- [PR#47](https://github.com/EmbarkStudios/crash-handling/pull/47) added support for unpacking `EXC_GUARD` exceptions on MacOS.
@@ -44,7 +45,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4445
- Initial pass of crash-context, Linux only
4546

4647
<!-- next-url -->
47-
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...HEAD
48+
[Unreleased]: https://github.com/EmbarkStudios/crash-handling/compare/crash-context-0.4.0...HEAD
49+
[0.4.0]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.1...crash-context-0.4.0
4850
[0.3.1]: https://github.com/EmbarkStudios/crash-handling/compare/0.3.0...0.3.1
4951
[0.3.0]: https://github.com/EmbarkStudios/crash-handling/compare/crash-handler-v0.1.0...0.3.0
5052
[crash-handler-v0.1.0]: https://github.com/EmbarkStudios/crash-handling/releases/tag/crash-handler-v0.1.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.3.1"
3+
version = "0.4.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.3", path = "../crash-context" }
25+
crash-context = { version = "0.4", 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.3", path = "../crash-context" }
22+
crash-context = { version = "0.4", path = "../crash-context" }
2323
libc = "0.2"
2424
# Basic log emitting
2525
log = "0.4"

0 commit comments

Comments
 (0)