Skip to content

Commit

Permalink
release: 8.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Sep 29, 2021
1 parent 0cee6fc commit 77ab45f
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 8.3.1

**Fixes**:

Expand Down
2 changes: 1 addition & 1 deletion examples/addr2line/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "addr2line"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/dump_cfi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dump_cfi"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/dump_sources/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dump_sources"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/minidump_stackwalk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minidump_stackwalk"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/object_debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "object_debug"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/symcache_debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symcache_debug"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/unreal_engine_crash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unreal_engine_crash"
version = "8.3.0"
version = "8.3.1"
authors = ["Jan Michael Auer <mail@jauer.org>"]
edition = "2018"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions symbolic-cabi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-cabi"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -22,5 +22,5 @@ crate-type = ["cdylib"]
[dependencies]
serde_json = "1.0.40"
apple-crash-report-parser = { version = "0.4.0", features = ["with_serde"] }
symbolic = { version = "8.3.0", path = "../symbolic", features = ["debuginfo", "demangle", "minidump", "sourcemap", "symcache", "unreal-serde"] }
symbolic = { version = "8.3.1", path = "../symbolic", features = ["debuginfo", "demangle", "minidump", "sourcemap", "symcache", "unreal-serde"] }
proguard = { version = "4.0.1", features = ["uuid"] }
2 changes: 1 addition & 1 deletion symbolic-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-common"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down
4 changes: 2 additions & 2 deletions symbolic-debuginfo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-debuginfo"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down Expand Up @@ -40,7 +40,7 @@ scroll = "0.10"
serde = { version = "1.0.94", features = ["derive"] }
serde_json = "1.0.40"
smallvec = "1.2.0"
symbolic-common = { version = "8.3.0", path = "../symbolic-common" }
symbolic-common = { version = "8.3.1", path = "../symbolic-common" }
thiserror = "1.0.20"
walrus = "0.19.0"
wasmparser = "0.77.0" # must match spec in walrus
Expand Down
4 changes: 2 additions & 2 deletions symbolic-demangle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-demangle"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down Expand Up @@ -34,7 +34,7 @@ swift = ["cc"]
cpp_demangle = { version = "0.3.2", optional = true }
msvc-demangler = { version = "0.9.0", optional = true }
rustc-demangle = { version = "0.1.16", optional = true }
symbolic-common = { version = "8.3.0", path = "../symbolic-common" }
symbolic-common = { version = "8.3.1", path = "../symbolic-common" }

[build-dependencies]
cc = { version = "1.0.50", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions symbolic-minidump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-minidump"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down Expand Up @@ -33,8 +33,8 @@ all-features = true
lazy_static = "1.4.0"
regex = "1.3.5"
serde = { version = "1.0.94", optional = true }
symbolic-common = { version = "8.3.0", path = "../symbolic-common" }
symbolic-debuginfo = { version = "8.3.0", path = "../symbolic-debuginfo" }
symbolic-common = { version = "8.3.1", path = "../symbolic-common" }
symbolic-debuginfo = { version = "8.3.1", path = "../symbolic-debuginfo" }
thiserror = "1.0.20"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion symbolic-sourcemap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-sourcemap"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down
6 changes: 3 additions & 3 deletions symbolic-symcache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-symcache"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand All @@ -25,8 +25,8 @@ all-features = true
[dependencies]
dmsort = "1.0.1"
fnv = "1.0.6"
symbolic-common = { version = "8.3.0", path = "../symbolic-common" }
symbolic-debuginfo = { version = "8.3.0", path = "../symbolic-debuginfo" }
symbolic-common = { version = "8.3.1", path = "../symbolic-common" }
symbolic-debuginfo = { version = "8.3.1", path = "../symbolic-debuginfo" }
thiserror = "1.0.20"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion symbolic-testutils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-testutils"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion symbolic-unreal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-unreal"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down
2 changes: 1 addition & 1 deletion symbolic-unwind/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic-unwind"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = ["Sebastian Zivota <loewenheim@mailbox.org>"]
documentation = "https://docs.rs/symbolic-symcache"
Expand Down
16 changes: 8 additions & 8 deletions symbolic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "symbolic"
version = "8.3.0"
version = "8.3.1"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
Expand Down Expand Up @@ -33,13 +33,13 @@ unreal = ["symbolic-unreal"]
unreal-serde = ["unreal", "common-serde", "symbolic-unreal/serde"]

[dependencies]
symbolic-common = { version = "8.3.0", path = "../symbolic-common" }
symbolic-debuginfo = { version = "8.3.0", path = "../symbolic-debuginfo", optional = true }
symbolic-demangle = { version = "8.3.0", path = "../symbolic-demangle", optional = true }
symbolic-minidump = { version = "8.3.0", path = "../symbolic-minidump", optional = true }
symbolic-sourcemap = { version = "8.3.0", path = "../symbolic-sourcemap", optional = true }
symbolic-symcache = { version = "8.3.0", path = "../symbolic-symcache", optional = true }
symbolic-unreal = { version = "8.3.0", path = "../symbolic-unreal", optional = true }
symbolic-common = { version = "8.3.1", path = "../symbolic-common" }
symbolic-debuginfo = { version = "8.3.1", path = "../symbolic-debuginfo", optional = true }
symbolic-demangle = { version = "8.3.1", path = "../symbolic-demangle", optional = true }
symbolic-minidump = { version = "8.3.1", path = "../symbolic-minidump", optional = true }
symbolic-sourcemap = { version = "8.3.1", path = "../symbolic-sourcemap", optional = true }
symbolic-symcache = { version = "8.3.1", path = "../symbolic-symcache", optional = true }
symbolic-unreal = { version = "8.3.1", path = "../symbolic-unreal", optional = true }

[badges]
travis-ci = { repository = "getsentry/symbolic", branch = "master" }

0 comments on commit 77ab45f

Please sign in to comment.