Skip to content

Commit 46e04c8

Browse files
committed
release: 0.20.1
1 parent d4be58e commit 46e04c8

File tree

18 files changed

+67
-67
lines changed

18 files changed

+67
-67
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.20.1
44

55
**Fixes**:
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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -22,8 +22,8 @@ with_sentry_default = [
2222
]
2323

2424
[dependencies]
25-
sentry = { version = "0.20.0", path = "../sentry", default-features = false }
26-
sentry-failure = { version = "0.20.0", path = "../sentry-failure" }
25+
sentry = { version = "0.20.1", path = "../sentry", default-features = false }
26+
sentry-failure = { version = "0.20.1", path = "../sentry-failure" }
2727
actix-web = { version = "0.7", default-features = false }
2828
failure = "0.1.3"
2929
fragile = "0.3.0"

sentry-anyhow/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-anyhow"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,5 +15,5 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
1919
anyhow = "1.0.30"

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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,7 +15,7 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
1919
lazy_static = "1.4.0"
2020
backtrace = "0.3.44"
2121
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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -16,7 +16,7 @@ edition = "2018"
1616
all-features = true
1717

1818
[dependencies]
19-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
2020
libc = "0.2.66"
2121
hostname = "0.3.0"
2222
regex = "1.3.4"
@@ -29,4 +29,4 @@ uname = "0.1.1"
2929
rustc_version = "0.2.3"
3030

3131
[dev-dependencies]
32-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
32+
sentry = { version = "0.20.1", 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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -23,7 +23,7 @@ debug-logs = ["log_"]
2323
test = ["client"]
2424

2525
[dependencies]
26-
sentry-types = { version = "0.20.0", path = "../sentry-types" }
26+
sentry-types = { version = "0.20.1", path = "../sentry-types" }
2727
serde = { version = "1.0.104", features = ["derive"] }
2828
lazy_static = "1.4.0"
2929
im = { version = "15.0.0", optional = true }
@@ -35,7 +35,7 @@ log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"]
3535
# Because we re-export all the public API in `sentry`, we actually run all the
3636
# doctests using the `sentry` crate. This also takes care of the doctest
3737
# limitation documented in https://github.com/rust-lang/rust/issues/45599.
38-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
38+
sentry = { version = "0.20.1", path = "../sentry", default-features = false, features = ["test"] }
3939
thiserror = "1.0.15"
4040
anyhow = "1.0.30"
4141
failure = "0.1.8"

sentry-core/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ functionality.
4545

4646
[`sentry`]: https://crates.io/crates/sentry
4747
[Unified API]: https://develop.sentry.dev/sdk/unified-api/
48-
[`Client`]: https://docs.rs/sentry-core/0.20.0/sentry_core/struct.Client.html
49-
[`Hub`]: https://docs.rs/sentry-core/0.20.0/sentry_core/struct.Hub.html
50-
[`Scope`]: https://docs.rs/sentry-core/0.20.0/sentry_core/struct.Scope.html
51-
[`Integration`]: https://docs.rs/sentry-core/0.20.0/sentry_core/trait.Integration.html
52-
[`Transport`]: https://docs.rs/sentry-core/0.20.0/sentry_core/trait.Transport.html
53-
[`TransportFactory`]: https://docs.rs/sentry-core/0.20.0/sentry_core/trait.TransportFactory.html
54-
[`test`]: https://docs.rs/sentry-core/0.20.0/sentry_core/test/index.html
48+
[`Client`]: https://docs.rs/sentry-core/0.20.1/sentry_core/struct.Client.html
49+
[`Hub`]: https://docs.rs/sentry-core/0.20.1/sentry_core/struct.Hub.html
50+
[`Scope`]: https://docs.rs/sentry-core/0.20.1/sentry_core/struct.Scope.html
51+
[`Integration`]: https://docs.rs/sentry-core/0.20.1/sentry_core/trait.Integration.html
52+
[`Transport`]: https://docs.rs/sentry-core/0.20.1/sentry_core/trait.Transport.html
53+
[`TransportFactory`]: https://docs.rs/sentry-core/0.20.1/sentry_core/trait.TransportFactory.html
54+
[`test`]: https://docs.rs/sentry-core/0.20.1/sentry_core/test/index.html
5555

5656
## Resources
5757

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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,6 +15,6 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
1919
lazy_static = "1.4.0"
2020
findshlibs = "0.7.0"

sentry-error-chain/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-error-chain"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,9 +15,9 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19-
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.20.1", path = "../sentry-backtrace" }
2020
error-chain = "0.12.1"
2121

2222
[dev-dependencies]
23-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
23+
sentry = { version = "0.20.1", path = "../sentry", default-features = false, features = ["test"] }

sentry-failure/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-failure"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,10 +15,10 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19-
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.20.1", path = "../sentry-backtrace" }
2020
failure = "0.1.6"
2121

2222
[dev-dependencies]
23-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
24-
sentry-panic = { version = "0.20.0", path = "../sentry-panic" }
23+
sentry = { version = "0.20.1", path = "../sentry", default-features = false, features = ["test"] }
24+
sentry-panic = { version = "0.20.1", path = "../sentry-panic" }

sentry-log/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-log"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,12 +15,12 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19-
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.20.1", path = "../sentry-backtrace" }
2020
log = { version = "0.4.8", features = ["std"] }
2121
env_logger = { version = "0.7.1", optional = true }
2222

2323
[dev-dependencies]
24-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
24+
sentry = { version = "0.20.1", path = "../sentry", default-features = false, features = ["test"] }
2525
pretty_env_logger = "0.4.0"
2626
env_logger = "0.7.1"

sentry-log/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ anything above `Error` is captured as error event.
1717

1818
```rust
1919
let log_integration = sentry_log::LogIntegration::default();
20-
let _setry = sentry::init(sentry::ClientOptions::default().add_integration(log_integration));
20+
let _sentry = sentry::init(sentry::ClientOptions::default().add_integration(log_integration));
2121

2222
log::info!("Generates a breadcrumb");
2323
```
@@ -29,7 +29,7 @@ let mut log_builder = pretty_env_logger::formatted_builder();
2929
log_builder.parse_filters("info");
3030
let log_integration =
3131
sentry_log::LogIntegration::default().with_env_logger_dest(Some(log_builder.build()));
32-
let _setry = sentry::init(sentry::ClientOptions::default().add_integration(log_integration));
32+
let _sentry = sentry::init(sentry::ClientOptions::default().add_integration(log_integration));
3333

3434
log::error!("Generates an event");
3535
```

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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,8 +15,8 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19-
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.20.1", path = "../sentry-backtrace" }
2020

2121
[dev-dependencies]
22-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
22+
sentry = { version = "0.20.1", 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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -15,8 +15,8 @@ edition = "2018"
1515
all-features = true
1616

1717
[dependencies]
18-
sentry-core = { version = "0.20.0", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.1", path = "../sentry-core" }
1919
slog = "2.5.2"
2020

2121
[dev-dependencies]
22-
sentry = { version = "0.20.0", path = "../sentry", default-features = false, features = ["test"] }
22+
sentry = { version = "0.20.1", path = "../sentry", default-features = false, features = ["test"] }

sentry-slog/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ let integration = SlogIntegration::default()
6262
Please not that the `mapper` can override any classification from the
6363
previous `filter`.
6464

65-
[`SlogIntegration`]: https://docs.rs/sentry-slog/0.20.0/sentry_slog/struct.SlogIntegration.html
66-
[`SentryDrain`]: https://docs.rs/sentry-slog/0.20.0/sentry_slog/struct.SentryDrain.html
65+
[`SlogIntegration`]: https://docs.rs/sentry-slog/0.20.1/sentry_slog/struct.SlogIntegration.html
66+
[`SentryDrain`]: https://docs.rs/sentry-slog/0.20.1/sentry_slog/struct.SentryDrain.html
6767

6868
## Resources
6969

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.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"

sentry/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -61,16 +61,16 @@ with_native_tls = ["native-tls"]
6161
with_rustls = ["rustls"]
6262

6363
[dependencies]
64-
sentry-core = { version = "0.20.0", path = "../sentry-core", features = ["client"] }
65-
sentry-anyhow = { version = "0.20.0", path = "../sentry-anyhow", optional = true }
66-
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace", optional = true }
67-
sentry-contexts = { version = "0.20.0", path = "../sentry-contexts", optional = true }
68-
sentry-debug-images = { version = "0.20.0", path = "../sentry-debug-images", optional = true }
69-
sentry-error-chain = { version = "0.20.0", path = "../sentry-error-chain", optional = true }
70-
sentry-failure = { version = "0.20.0", path = "../sentry-failure", optional = true }
71-
sentry-log = { version = "0.20.0", path = "../sentry-log", optional = true }
72-
sentry-panic = { version = "0.20.0", path = "../sentry-panic", optional = true }
73-
sentry-slog = { version = "0.20.0", path = "../sentry-slog", optional = true }
64+
sentry-core = { version = "0.20.1", path = "../sentry-core", features = ["client"] }
65+
sentry-anyhow = { version = "0.20.1", path = "../sentry-anyhow", optional = true }
66+
sentry-backtrace = { version = "0.20.1", path = "../sentry-backtrace", optional = true }
67+
sentry-contexts = { version = "0.20.1", path = "../sentry-contexts", optional = true }
68+
sentry-debug-images = { version = "0.20.1", path = "../sentry-debug-images", optional = true }
69+
sentry-error-chain = { version = "0.20.1", path = "../sentry-error-chain", optional = true }
70+
sentry-failure = { version = "0.20.1", path = "../sentry-failure", optional = true }
71+
sentry-log = { version = "0.20.1", path = "../sentry-log", optional = true }
72+
sentry-panic = { version = "0.20.1", path = "../sentry-panic", optional = true }
73+
sentry-slog = { version = "0.20.1", path = "../sentry-slog", optional = true }
7474
log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"] }
7575
reqwest_ = { package = "reqwest", version = "0.10.8", optional = true, features = ["blocking", "json"], default-features = false }
7676
curl_ = { package = "curl", version = "0.4.25", optional = true }
@@ -81,9 +81,9 @@ httpdate = { version = "0.3.2", optional = true }
8181
serde_json = { version = "1.0.48", optional = true }
8282

8383
[dev-dependencies]
84-
sentry-anyhow = { version = "0.20.0", path = "../sentry-anyhow" }
85-
sentry-error-chain = { version = "0.20.0", path = "../sentry-error-chain" }
86-
sentry-log = { version = "0.20.0", path = "../sentry-log", features = ["env_logger"] }
84+
sentry-anyhow = { version = "0.20.1", path = "../sentry-anyhow" }
85+
sentry-error-chain = { version = "0.20.1", path = "../sentry-error-chain" }
86+
sentry-log = { version = "0.20.1", path = "../sentry-log", features = ["env_logger"] }
8787
log_ = { package = "log", version = "0.4.8", features = ["std"] }
8888
failure_derive = "0.1.6"
8989
actix-web = { version = "0.7.19", default-features = false }

sentry/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@ sentry::capture_message("Hello World!", sentry::Level::Info);
2828
// seconds to send remaining events to the service.
2929
```
3030

31-
[`sentry::init`]: https://docs.rs/sentry/0.20.0/sentry/fn.init.html
32-
[`Hub`]: https://docs.rs/sentry/0.20.0/sentry/struct.Hub.html
31+
[`sentry::init`]: https://docs.rs/sentry/0.20.1/sentry/fn.init.html
32+
[`Hub`]: https://docs.rs/sentry/0.20.1/sentry/struct.Hub.html
3333

3434
## Integrations
3535

3636
What makes this crate useful are the various integrations that exist. Some of them are enabled
3737
by default, some uncommon ones or for deprecated parts of the ecosystem a feature flag needs to
3838
be enabled. For the available integrations and how to use them see
39-
[integrations](https://docs.rs/sentry/0.20.0/sentry/integrations/index.html) and [apply_defaults](https://docs.rs/sentry/0.20.0/sentry/fn.apply_defaults.html).
39+
[integrations](https://docs.rs/sentry/0.20.1/sentry/integrations/index.html) and [apply_defaults](https://docs.rs/sentry/0.20.1/sentry/fn.apply_defaults.html).
4040

4141
## Minimal API
4242

4343
This crate comes fully featured. If the goal is to instrument libraries for usage
4444
with sentry, or to extend sentry with a custom [`Integration`] or a [`Transport`],
4545
one should use the [`sentry-core`] crate instead.
4646

47-
[`Integration`]: https://docs.rs/sentry/0.20.0/sentry/trait.Integration.html
48-
[`Transport`]: https://docs.rs/sentry/0.20.0/sentry/trait.Transport.html
47+
[`Integration`]: https://docs.rs/sentry/0.20.1/sentry/trait.Integration.html
48+
[`Transport`]: https://docs.rs/sentry/0.20.1/sentry/trait.Transport.html
4949
[`sentry-core`]: https://crates.io/crates/sentry-core
5050

5151
## Features

0 commit comments

Comments
 (0)