Skip to content

Commit 8a79d48

Browse files
committed
release: 12.16.0
1 parent 4c5de21 commit 8a79d48

File tree

25 files changed

+76
-76
lines changed

25 files changed

+76
-76
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 12.16.0
44

55
**Features**
66

Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/addr2line/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "addr2line"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Jan Michael Auer <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -10,4 +10,4 @@ publish = false
1010
[dependencies]
1111
anyhow = { workspace = true }
1212
clap = { workspace = true }
13-
symbolic = { version = "12.15.5", path = "../../symbolic", features = ["demangle"] }
13+
symbolic = { version = "12.16.0", path = "../../symbolic", features = ["demangle"] }

examples/debuginfo_debug/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "debuginfo_debug"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Markus Stange <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -10,6 +10,6 @@ publish = false
1010
[dependencies]
1111
anyhow = { workspace = true }
1212
clap = { workspace = true }
13-
symbolic = { version = "12.15.5", path = "../../symbolic", features = [
13+
symbolic = { version = "12.16.0", path = "../../symbolic", features = [
1414
"demangle",
1515
] }

examples/dump_cfi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dump_cfi"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Jan Michael Auer <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -10,4 +10,4 @@ publish = false
1010
[dependencies]
1111
anyhow = { workspace = true }
1212
clap = { workspace = true }
13-
symbolic = { version = "12.15.5", path = "../../symbolic", features = ["cfi"] }
13+
symbolic = { version = "12.16.0", path = "../../symbolic", features = ["cfi"] }

examples/dump_sources/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dump_sources"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Jan Michael Auer <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -9,4 +9,4 @@ publish = false
99

1010
[dependencies]
1111
clap = { workspace = true }
12-
symbolic = { version = "12.15.5", path = "../../symbolic" }
12+
symbolic = { version = "12.16.0", path = "../../symbolic" }

examples/minidump_stackwalk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "minidump_stackwalk"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Jan Michael Auer <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -13,7 +13,7 @@ clap = { workspace = true }
1313
minidump = { workspace = true }
1414
minidump-processor = { workspace = true }
1515
minidump-unwind = { workspace = true }
16-
symbolic = { version = "12.15.5", path = "../../symbolic", features = [
16+
symbolic = { version = "12.16.0", path = "../../symbolic", features = [
1717
"symcache",
1818
"demangle",
1919
"cfi",

examples/object_debug/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "object_debug"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Jan Michael Auer <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -9,4 +9,4 @@ publish = false
99

1010
[dependencies]
1111
clap = { workspace = true }
12-
symbolic = { version = "12.15.5", path = "../../symbolic" }
12+
symbolic = { version = "12.16.0", path = "../../symbolic" }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "sourcemapcache_debug"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Sentry <[email protected]>"]
55
edition = "2021"
66
publish = false
77

88
[dependencies]
99
anyhow = { workspace = true }
1010
clap = { workspace = true }
11-
symbolic = { version = "12.15.5", path = "../../symbolic", features = [
11+
symbolic = { version = "12.16.0", path = "../../symbolic", features = [
1212
"sourcemapcache",
1313
] }
1414
tracing-subscriber = { workspace = true, features = ["env-filter"] }

examples/symcache_debug/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symcache_debug"
3-
version = "12.15.5"
3+
version = "12.16.0"
44
authors = ["Jan Michael Auer <[email protected]>"]
55
edition = "2021"
66
publish = false
@@ -10,7 +10,7 @@ publish = false
1010
[dependencies]
1111
anyhow = { workspace = true }
1212
clap = { workspace = true }
13-
symbolic = { version = "12.15.5", path = "../../symbolic", features = [
13+
symbolic = { version = "12.16.0", path = "../../symbolic", features = [
1414
"symcache",
1515
"demangle",
1616
"il2cpp",

0 commit comments

Comments
 (0)