Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielesvelto committed Oct 10, 2024
1 parent f5e4dda commit ca0ab4d
Showing 9 changed files with 33 additions and 28 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Unreleased

Nothing Yet!


# Version 0.22.2 (2024-10-10)

* Added inconsisten crash detection. Impossible crashes such as those caused by
CPU bugs are now flagged with a list describing why they shouldn't represent.
For example, an access fault caused by an instruction that is not accessing
4 changes: 2 additions & 2 deletions breakpad-symbols/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "breakpad-symbols"
description = "A library for working with Google Breakpad's text-format symbol files."
version = "0.22.1"
version = "0.22.2"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
readme = "README.md"
@@ -28,7 +28,7 @@ circular = "0.3.0"
debugid = "0.8.0"
futures-util = "0.3"
tracing = { version = "0.1.34", features = ["log"] }
minidump-common = { version = "0.22.1", path = "../minidump-common" }
minidump-common = { version = "0.22.2", path = "../minidump-common" }
nom = "7"
range-map = "0.2"
reqwest = { version = "0.12", default-features = false, features = [
2 changes: 1 addition & 1 deletion minidump-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump-common"
description = "Some common types for working with minidump files."
version = "0.22.1"
version = "0.22.2"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
readme = "README.md"
license = "MIT"
10 changes: 5 additions & 5 deletions minidump-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump-processor"
description = "A library for producing stack traces and other useful information from minidump files."
version = "0.22.1"
version = "0.22.2"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
readme = "README.md"
@@ -25,12 +25,12 @@ mozilla_cab_symbols = ["breakpad-symbols/mozilla_cab_symbols"]

[dependencies]
async-trait = "0.1.52"
breakpad-symbols = { version = "0.22.1", path = "../breakpad-symbols" }
breakpad-symbols = { version = "0.22.2", path = "../breakpad-symbols" }
debugid = "0.8.0"
futures-util = "0.3.25"
minidump = { version = "0.22.1", path = "../minidump" }
minidump-common = { version = "0.22.1", path = "../minidump-common" }
minidump-unwind = { version = "0.22.1", path = "../minidump-unwind" }
minidump = { version = "0.22.2", path = "../minidump" }
minidump-common = { version = "0.22.2", path = "../minidump-common" }
minidump-unwind = { version = "0.22.2", path = "../minidump-unwind" }
scroll = "0.12.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
10 changes: 5 additions & 5 deletions minidump-stackwalk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump-stackwalk"
description = "Analyzes minidumps and produces a report (either human-readable or JSON)"
version = "0.22.1"
version = "0.22.2"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
homepage = "https://github.com/rust-minidump/rust-minidump"
@@ -21,10 +21,10 @@ mozilla_cab_symbols = ["minidump-processor/mozilla_cab_symbols"]
[dependencies]
clap = { version = "4.5.0", features = ["cargo", "wrap_help", "derive"] }
indicatif = "0.17.0"
minidump = { version = "0.22.1", path = "../minidump" }
minidump-common = { version = "0.22.1", path = "../minidump-common" }
minidump-processor = { version = "0.22.1", path = "../minidump-processor" }
minidump-unwind = { version = "0.22.1", path = "../minidump-unwind", features = ["debuginfo", "http"] }
minidump = { version = "0.22.2", path = "../minidump" }
minidump-common = { version = "0.22.2", path = "../minidump-common" }
minidump-processor = { version = "0.22.2", path = "../minidump-processor" }
minidump-unwind = { version = "0.22.2", path = "../minidump-unwind", features = ["debuginfo", "http"] }
tokio = { version = "1.12.0", features = ["full"] }
tracing = { version = "0.1.34", features = ["log"] }
tracing-subscriber = "0.3.14"
4 changes: 2 additions & 2 deletions minidump-synth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump-synth"
description = "A library for producing synthetic minidumps for testing."
version = "0.22.1"
version = "0.22.2"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/rust-minidump/rust-minidump"
@@ -12,5 +12,5 @@ edition = "2021"

[dependencies]
test-assembler = "0.1.5"
minidump-common = { version = "0.22.1", path = "../minidump-common" }
minidump-common = { version = "0.22.2", path = "../minidump-common" }
scroll = "0.12.0"
8 changes: 4 additions & 4 deletions minidump-unwind/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump-unwind"
description = "A library for producing stack traces from minidump files."
version = "0.22.1"
version = "0.22.2"
authors = ["Alex Franchuk <afranchuk@mozilla.com>"]
license = "MIT"
readme = "README.md"
@@ -24,13 +24,13 @@ http = ["breakpad-symbols/http"]

[dependencies]
async-trait = "0.1.52"
breakpad-symbols = { version = "0.22.1", path = "../breakpad-symbols" }
breakpad-symbols = { version = "0.22.2", path = "../breakpad-symbols" }
cachemap2 = { version = "0.3.0", optional = true }
framehop = { version = "0.13", optional = true }
futures-util = { version = "0.3.25", optional = true }
memmap2 = { version = "0.9", optional = true }
minidump = { version = "0.22.1", path = "../minidump" }
minidump-common = { version = "0.22.1", path = "../minidump-common" }
minidump = { version = "0.22.2", path = "../minidump" }
minidump-common = { version = "0.22.2", path = "../minidump-common" }
object = { version = "0.36", default-features = false, features = ["read"], optional = true }
scroll = "0.12.0"
tracing = { version = "0.1.34", features = ["log"] }
4 changes: 2 additions & 2 deletions minidump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump"
description = "A parser for the minidump format."
version = "0.22.1"
version = "0.22.2"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
homepage = "https://github.com/rust-minidump/rust-minidump"
@@ -17,7 +17,7 @@ debugid = "0.8.0"
encoding_rs = "0.8"
tracing = { version = "0.1.34", features = ["log"] }
memmap2 = "0.9"
minidump-common = { version = "0.22.1", path = "../minidump-common" }
minidump-common = { version = "0.22.2", path = "../minidump-common" }
num-traits = "0.2"
procfs-core = { version = "0.17", default-features = false }
range-map = "0.2"

0 comments on commit ca0ab4d

Please sign in to comment.