Skip to content

Commit

Permalink
0.9.6 release
Browse files Browse the repository at this point in the history
reaking changes to fix integration issues found during deployment.

More docs.

See RELEASES.md for details
  • Loading branch information
Gankra committed Dec 8, 2021
1 parent 1188157 commit 564ece4
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 21 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

8 changes: 6 additions & 2 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Pending Release (TBD)
# Version 0.9.6 (2021-12-08)

Commit: TBD
Commit: This One!

Breaking changes to fix integration issues found during deployment.

More docs.


Changes:

Expand All @@ -27,6 +29,8 @@ This change was made to reflect the fact that most users of other flavours of mi





# Version 0.9.5 (2021-12-01)

Commit: 445431ce2bfe55fd85b990bb2a5c01867d2a8150
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.9.5"
version = "0.9.6"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ edition = "2018"
travis-ci = { repository = "luser/rust-minidump" }

[dependencies]
minidump-common = { version = "0.9.5", path = "../minidump-common" }
minidump-common = { version = "0.9.6", path = "../minidump-common" }
range-map = "0.1.5"
nom = "~1.2.2"
log = "0.4.1"
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.9.5"
version = "0.9.6"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
readme = "README.md"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 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 and tool for producing stack traces and other useful information from minidump files."
version = "0.9.5"
version = "0.9.6"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
readme = "README.md"
Expand All @@ -20,13 +20,13 @@ breakpad-syms = ["breakpad-symbols"]
symbolic-syms = []

[dependencies]
breakpad-symbols = { version = "0.9.5", path = "../breakpad-symbols", optional = true }
breakpad-symbols = { version = "0.9.6", path = "../breakpad-symbols", optional = true }
chrono = { version = "0.4.6", features = ["serde"] }
clap = "2.33"
failure = "0.1.1"
log = "0.4"
memmap = "0.7.0"
minidump = { version = "0.9.5", path = "../minidump" }
minidump = { version = "0.9.6", path = "../minidump" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.11.0"
Expand Down
6 changes: 3 additions & 3 deletions minidump-stackwalk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minidump-stackwalk"
description = "A CLI minidump analyzer"
version = "0.9.5"
version = "0.9.6"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
homepage = "https://github.com/luser/rust-minidump"
Expand All @@ -17,8 +17,8 @@ travis-ci = { repository = "luser/rust-minidump" }
[dependencies]
clap = { version = "2.33", features=["wrap_help"] }
log = "0.4"
minidump = { version = "0.9.5", path = "../minidump" }
minidump-processor = { version = "0.9.5", path = "../minidump-processor" }
minidump = { version = "0.9.6", path = "../minidump" }
minidump-processor = { version = "0.9.6", path = "../minidump-processor" }
simplelog = "0.11.0"

[features]
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.9.5"
version = "0.9.6"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
license = "MIT"
homepage = "https://github.com/luser/rust-minidump"
Expand All @@ -15,7 +15,7 @@ edition = "2018"
failure = "0.1.1"
range-map = "0.1.5"
log = "0.4.1"
minidump-common = { version = "0.9.5", path = "../minidump-common" }
minidump-common = { version = "0.9.6", path = "../minidump-common" }
num-traits = "0.2"
encoding = "0.2"
chrono = "0.4.6"
Expand Down
4 changes: 2 additions & 2 deletions synth-minidump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "synth-minidump"
version = "0.9.5"
version = "0.9.6"
edition = "2021"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
test-assembler = "0.1.5"
minidump-common = { version = "0.9.5", path = "../minidump-common" }
minidump-common = { version = "0.9.6", path = "../minidump-common" }
encoding = "0.2"
scroll = "0.10.2"

0 comments on commit 564ece4

Please sign in to comment.