Skip to content

Commit 05e5f83

Browse files
committed
release: 0.10.0
1 parent 9317df1 commit 05e5f83

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
# Changelog
22

3+
# 0.10.0
4+
5+
- Streamline types with other SDKs. Most notabe changes:
6+
- `Event::id` has been renamed to `Event::event_id`
7+
- `Event::exceptions` has been renamed to `Event::exception`
8+
- Some collections are now wrapped in `Values`
9+
- Added more debug logs.
10+
311
# 0.9.0
412

5-
* Removed `drain_events`. Events are now drained by calling `Client::close` or on the
13+
- Removed `drain_events`. Events are now drained by calling `Client::close` or on the
614
transport on `Transport::shutdown`.
7-
* Removed `Hub::add_event_processor`. This was replaced by `Scope::add_event_processor`
15+
- Removed `Hub::add_event_processor`. This was replaced by `Scope::add_event_processor`
816
which is easier to use (only returns factory function)/
9-
* Added various new client configuration values.
10-
* Unified option handling
17+
- Added various new client configuration values.
18+
- Unified option handling
1119

1220
This is likely to be the final API before 1.0
1321

1422
# 0.3.1
1523

16-
* Remove null byte terminator from device model context (#33)
17-
* Fix `uname` breaking builds on Windows (#32)
18-
* Fix the crate documentation link (#31)
24+
- Remove null byte terminator from device model context (#33)
25+
- Fix `uname` breaking builds on Windows (#32)
26+
- Fix the crate documentation link (#31)

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

integrations/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.4.0"
3+
version = "0.5.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -13,7 +13,7 @@ Sentry client extension for actix-web
1313

1414
[dependencies]
1515
actix-web = { version = "0.7", default-features = false }
16-
sentry = { version = "0.9.0", path = "../../" }
17-
failure = "0.1.1"
16+
sentry = { version = "0.10.0", path = "../../" }
17+
failure = "0.1.2"
1818
uuid = "0.6.5"
1919
fragile = "0.3.0"

0 commit comments

Comments
 (0)