From 05e5f830d51a738fffd6188bcfe0e541b49f0cf4 Mon Sep 17 00:00:00 2001 From: Jan Michael Auer Date: Wed, 12 Sep 2018 13:43:21 +0200 Subject: [PATCH] release: 0.10.0 --- CHANGELOG.md | 22 +++++++++++++++------- Cargo.toml | 2 +- integrations/sentry-actix/Cargo.toml | 6 +++--- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f211cdf..710100f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index ef3bd35e..59ea833e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sentry" -version = "0.9.0" +version = "0.10.0" authors = ["Sentry "] license = "Apache-2.0" readme = "README.md" diff --git a/integrations/sentry-actix/Cargo.toml b/integrations/sentry-actix/Cargo.toml index 47de6fc3..6bf2d2c8 100644 --- a/integrations/sentry-actix/Cargo.toml +++ b/integrations/sentry-actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sentry-actix" -version = "0.4.0" +version = "0.5.0" authors = ["Sentry "] license = "Apache-2.0" readme = "README.md" @@ -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"