Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielesvelto committed Sep 18, 2023
1 parent 2ef9fe6 commit 902c857
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 29 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.18.0 (2023-09-18)

* Add support for the MozMacosBootargsStream minidump stream which captures
information holding macOS kernel boot arguments.
* Always use the code file for unwinding on Windows when using native debug
Expand Down
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.17.0"
version = "0.18.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ debugid = "0.8.0"
dump_syms = { version = "2.2.1", optional = true }
futures-util = "0.3"
tracing = { version = "0.1.34", features = ["log"] }
minidump-common = { version = "0.17.0", path = "../minidump-common" }
minidump-common = { version = "0.18.0", path = "../minidump-common" }
nom = "7"
range-map = "0.2"
reqwest = { version = "0.11.6", default-features = false, features = [
Expand Down
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.17.0"
version = "0.18.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
readme = "README.md"
license = "MIT"
Expand Down
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.17.0"
version = "0.18.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
readme = "README.md"
Expand All @@ -28,13 +28,13 @@ mozilla_cab_symbols = ["breakpad-symbols/mozilla_cab_symbols"]

[dependencies]
async-trait = "0.1.52"
breakpad-symbols = { version = "0.17.0", path = "../breakpad-symbols" }
breakpad-symbols = { version = "0.18.0", path = "../breakpad-symbols" }
debugid = "0.8.0"
futures-util = "0.3.25"
memmap2 = "0.5.7"
minidump = { version = "0.17.0", path = "../minidump" }
minidump-common = { version = "0.17.0", path = "../minidump-common" }
minidump-unwind = { version = "0.17.0", path = "../minidump-unwind" }
minidump = { version = "0.18.0", path = "../minidump" }
minidump-common = { version = "0.18.0", path = "../minidump-common" }
minidump-unwind = { version = "0.18.0", path = "../minidump-unwind" }
scroll = "0.11.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
12 changes: 6 additions & 6 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.17.0"
version = "0.18.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
homepage = "https://github.com/rust-minidump/rust-minidump"
Expand All @@ -23,10 +23,10 @@ mozilla_cab_symbols = ["minidump-processor/mozilla_cab_symbols"]
[dependencies]
clap = { version = "4.0.18", features = ["cargo", "wrap_help", "derive"] }
indicatif = "0.17.0"
minidump = { version = "0.17.0", path = "../minidump" }
minidump-common = { version = "0.17.0", path = "../minidump-common" }
minidump-processor = { version = "0.17.0", path = "../minidump-processor" }
minidump-unwind = { version = "0.17.0", path = "../minidump-unwind", features = ["debuginfo", "http"] }
minidump = { version = "0.18.0", path = "../minidump" }
minidump-common = { version = "0.18.0", path = "../minidump-common" }
minidump-processor = { version = "0.18.0", path = "../minidump-processor" }
minidump-unwind = { version = "0.18.0", 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"
Expand All @@ -39,4 +39,4 @@ test-assembler = "0.1.6"
[package.metadata.release]
pre-release-replacements = [
{file="../RELEASES.md", search="# Unreleased", replace="# Unreleased\n\nNothing Yet!\n\n\n# Version {{version}} ({{date}})", exactly=1},
]
]
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.17.0"
version = "0.18.0"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/rust-minidump/rust-minidump"
Expand All @@ -12,5 +12,5 @@ edition = "2021"

[dependencies]
test-assembler = "0.1.5"
minidump-common = { version = "0.17.0", path = "../minidump-common" }
minidump-common = { version = "0.18.0", path = "../minidump-common" }
scroll = "0.11.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.17.0"
version = "0.18.0"
authors = ["Alex Franchuk <afranchuk@mozilla.com>"]
license = "MIT"
readme = "README.md"
Expand All @@ -22,12 +22,12 @@ http = ["breakpad-symbols/http"]

[dependencies]
async-trait = "0.1.52"
breakpad-symbols = { version = "0.17.0", path = "../breakpad-symbols" }
breakpad-symbols = { version = "0.18.0", path = "../breakpad-symbols" }
cachemap2 = { version = "0.2.0", optional = true }
futures-util = { version = "0.3.25", optional = true }
memmap2 = { version = "0.5.7", optional = true }
minidump = { version = "0.17.0", path = "../minidump" }
minidump-common = { version = "0.17.0", path = "../minidump-common" }
minidump = { version = "0.18.0", path = "../minidump" }
minidump-common = { version = "0.18.0", path = "../minidump-common" }
scroll = "0.11.0"
symbolic-cfi = { version = "12", optional = true }
symbolic-common = { version = "12", optional = true }
Expand Down
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.17.0"
version = "0.18.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
homepage = "https://github.com/rust-minidump/rust-minidump"
Expand All @@ -17,7 +17,7 @@ debugid = "0.8.0"
encoding_rs = "0.8"
tracing = { version = "0.1.34", features = ["log"] }
memmap2 = "0.5.7"
minidump-common = { version = "0.17.0", path = "../minidump-common" }
minidump-common = { version = "0.18.0", path = "../minidump-common" }
num-traits = "0.2"
range-map = "0.2"
scroll = "0.11.0"
Expand Down

0 comments on commit 902c857

Please sign in to comment.