Skip to content

Commit c1e0824

Browse files
committed
release: 0.20.0
1 parent 2e50a32 commit c1e0824

File tree

18 files changed

+69
-65
lines changed

18 files changed

+69
-65
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.0
44

55
**Highlights**:
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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry", default-features = false }
26-
sentry-failure = { version = "0.19.1", path = "../sentry-failure" }
25+
sentry = { version = "0.20.0", path = "../sentry", default-features = false }
26+
sentry-failure = { version = "0.20.0", 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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.0", 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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.0", 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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-core" }
19+
sentry-core = { version = "0.20.0", 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.19.1", path = "../sentry", default-features = false, features = ["test"] }
32+
sentry = { version = "0.20.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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-types" }
26+
sentry-types = { version = "0.20.0", 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.19.1", path = "../sentry", default-features = false, features = ["test"] }
38+
sentry = { version = "0.20.0", 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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +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.19.0/sentry_core/struct.Client.html
49-
[`Hub`]: https://docs.rs/sentry-core/0.19.0/sentry_core/struct.Hub.html
50-
[`Scope`]: https://docs.rs/sentry-core/0.19.0/sentry_core/struct.Scope.html
51-
[`Integration`]: https://docs.rs/sentry-core/0.19.0/sentry_core/trait.Integration.html
52-
[`Transport`]: https://docs.rs/sentry-core/0.19.0/sentry_core/trait.Transport.html
53-
[`TransportFactory`]: https://docs.rs/sentry-core/0.19.0/sentry_core/trait.TransportFactory.html
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
5455

5556
## Resources
5657

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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-core" }
18+
sentry-core = { version = "0.20.0", 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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-core" }
19-
sentry-backtrace = { version = "0.19.1", path = "../sentry-backtrace" }
18+
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace" }
2020
error-chain = "0.12.1"
2121

2222
[dev-dependencies]
23-
sentry = { version = "0.19.1", path = "../sentry", default-features = false, features = ["test"] }
23+
sentry = { version = "0.20.0", 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.19.1"
3+
version = "0.20.0"
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.19.1", path = "../sentry-core" }
19-
sentry-backtrace = { version = "0.19.1", path = "../sentry-backtrace" }
18+
sentry-core = { version = "0.20.0", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.20.0", path = "../sentry-backtrace" }
2020
failure = "0.1.6"
2121

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

0 commit comments

Comments
 (0)