Skip to content

Commit

Permalink
release: 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-auer committed Sep 12, 2018
1 parent 9317df1 commit 05e5f83
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
22 changes: 15 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
# Changelog

# 0.10.0

- Streamline types with other SDKs. Most notabe changes:
- `Event::id` has been renamed to `Event::event_id`
- `Event::exceptions` has been renamed to `Event::exception`
- Some collections are now wrapped in `Values`
- Added more debug logs.

# 0.9.0

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

This is likely to be the final API before 1.0

# 0.3.1

* Remove null byte terminator from device model context (#33)
* Fix `uname` breaking builds on Windows (#32)
* Fix the crate documentation link (#31)
- Remove null byte terminator from device model context (#33)
- Fix `uname` breaking builds on Windows (#32)
- Fix the crate documentation link (#31)
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sentry"
version = "0.9.0"
version = "0.10.0"
authors = ["Sentry <hello@sentry.io>"]
license = "Apache-2.0"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions integrations/sentry-actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sentry-actix"
version = "0.4.0"
version = "0.5.0"
authors = ["Sentry <hello@sentry.io>"]
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ Sentry client extension for actix-web

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

0 comments on commit 05e5f83

Please sign in to comment.