Skip to content

Commit 24548e7

Browse files
author
getsentry-bot
committed
release: 0.22.0
1 parent 66bc24b commit 24548e7

File tree

12 files changed

+40
-40
lines changed

12 files changed

+40
-40
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+
## 0.22.0
44

55
**Breaking Changes**:
66

sentry-actix/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-actix"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,11 +12,11 @@ Sentry client extension for actix-web 3.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core", default-features = false }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core", default-features = false }
1616
actix-web = { version = "3", default-features = false }
1717
futures-util = { version = "0.3.5", default-features = false }
1818

1919
[dev-dependencies]
20-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
20+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }
2121
actix-rt = "1.1.1"
2222
futures = "0.3"

sentry-anyhow/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-anyhow"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,8 +12,8 @@ Sentry integration for anyhow.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
1616
anyhow = "1.0.30"
1717

1818
[dev-dependencies]
19-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
19+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }

sentry-backtrace/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-backtrace"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,7 +12,7 @@ Sentry integration and utilities for dealing with stacktraces.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
1616
lazy_static = "1.4.0"
1717
backtrace = "0.3.44"
1818
regex = "1.3.4"

sentry-contexts/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-contexts"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -13,7 +13,7 @@ build = "build.rs"
1313
edition = "2018"
1414

1515
[dependencies]
16-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
16+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
1717
libc = "0.2.66"
1818
hostname = "0.3.0"
1919
regex = "1.3.4"
@@ -26,4 +26,4 @@ uname = "0.1.1"
2626
rustc_version = "0.3.0"
2727

2828
[dev-dependencies]
29-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
29+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }

sentry-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-core"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -27,7 +27,7 @@ debug-logs = ["log_"]
2727
test = ["client"]
2828

2929
[dependencies]
30-
sentry-types = { version = "0.21.0", path = "../sentry-types" }
30+
sentry-types = { version = "0.22.0", path = "../sentry-types" }
3131
serde = { version = "1.0.104", features = ["derive"] }
3232
lazy_static = "1.4.0"
3333
rand = { version = "0.8.1", optional = true }
@@ -38,7 +38,7 @@ log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"]
3838
# Because we re-export all the public API in `sentry`, we actually run all the
3939
# doctests using the `sentry` crate. This also takes care of the doctest
4040
# limitation documented in https://github.com/rust-lang/rust/issues/45599.
41-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
41+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }
4242
thiserror = "1.0.15"
4343
anyhow = "1.0.30"
4444
tokio = { version = "1.0", features = ["rt", "rt-multi-thread", "macros"] }

sentry-debug-images/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-debug-images"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,6 +12,6 @@ Sentry integration that adds the list of loaded libraries to events.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
1616
lazy_static = "1.4.0"
1717
findshlibs = "0.8.0"

sentry-log/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-log"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,9 +12,9 @@ Sentry integration for log and env_logger crates.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
1616
log = { version = "0.4.8", features = ["std"] }
1717

1818
[dev-dependencies]
19-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
19+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }
2020
pretty_env_logger = "0.4.0"

sentry-panic/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-panic"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,8 +12,8 @@ Sentry integration for capturing panics.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
16-
sentry-backtrace = { version = "0.21.0", path = "../sentry-backtrace" }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
16+
sentry-backtrace = { version = "0.22.0", path = "../sentry-backtrace" }
1717

1818
[dev-dependencies]
19-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
19+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }

sentry-slog/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-slog"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,11 +12,11 @@ Sentry integration for the slog crate.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.21.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.22.0", path = "../sentry-core" }
1616
slog = { version = "2.5.2", features = ["nested-values"] }
1717
serde_json = "1.0.46"
1818

1919
[dev-dependencies]
20-
sentry = { version = "0.21.0", path = "../sentry", default-features = false, features = ["test"] }
20+
sentry = { version = "0.22.0", path = "../sentry", default-features = false, features = ["test"] }
2121
serde = "1.0.117"
2222
erased-serde = "0.3.12"

sentry-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-types"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"

sentry/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -39,14 +39,14 @@ native-tls = ["reqwest_/default-tls"]
3939
rustls = ["reqwest_/rustls-tls"]
4040

4141
[dependencies]
42-
sentry-core = { version = "0.21.0", path = "../sentry-core", features = ["client"] }
43-
sentry-anyhow = { version = "0.21.0", path = "../sentry-anyhow", optional = true }
44-
sentry-backtrace = { version = "0.21.0", path = "../sentry-backtrace", optional = true }
45-
sentry-contexts = { version = "0.21.0", path = "../sentry-contexts", optional = true }
46-
sentry-debug-images = { version = "0.21.0", path = "../sentry-debug-images", optional = true }
47-
sentry-log = { version = "0.21.0", path = "../sentry-log", optional = true }
48-
sentry-panic = { version = "0.21.0", path = "../sentry-panic", optional = true }
49-
sentry-slog = { version = "0.21.0", path = "../sentry-slog", optional = true }
42+
sentry-core = { version = "0.22.0", path = "../sentry-core", features = ["client"] }
43+
sentry-anyhow = { version = "0.22.0", path = "../sentry-anyhow", optional = true }
44+
sentry-backtrace = { version = "0.22.0", path = "../sentry-backtrace", optional = true }
45+
sentry-contexts = { version = "0.22.0", path = "../sentry-contexts", optional = true }
46+
sentry-debug-images = { version = "0.22.0", path = "../sentry-debug-images", optional = true }
47+
sentry-log = { version = "0.22.0", path = "../sentry-log", optional = true }
48+
sentry-panic = { version = "0.22.0", path = "../sentry-panic", optional = true }
49+
sentry-slog = { version = "0.22.0", path = "../sentry-slog", optional = true }
5050
log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"] }
5151
reqwest_ = { package = "reqwest", version = "0.11", optional = true, features = ["blocking", "json"], default-features = false }
5252
curl_ = { package = "curl", version = "0.4.25", optional = true }
@@ -56,9 +56,9 @@ httpdate = { version = "0.3.2", optional = true }
5656
serde_json = { version = "1.0.48", optional = true }
5757

5858
[dev-dependencies]
59-
sentry-anyhow = { version = "0.21.0", path = "../sentry-anyhow" }
60-
sentry-log = { version = "0.21.0", path = "../sentry-log" }
61-
sentry-slog = { version = "0.21.0", path = "../sentry-slog" }
59+
sentry-anyhow = { version = "0.22.0", path = "../sentry-anyhow" }
60+
sentry-log = { version = "0.22.0", path = "../sentry-log" }
61+
sentry-slog = { version = "0.22.0", path = "../sentry-slog" }
6262
log_ = { package = "log", version = "0.4.8", features = ["std"] }
6363
slog_ = { package = "slog", version = "2.5.2" }
6464
actix-web = { version = "3", default-features = false }

0 commit comments

Comments
 (0)