Skip to content

Commit

Permalink
Merge pull request #662 from Microsoft/develop
Browse files Browse the repository at this point in the history
develop -> master
  • Loading branch information
Benjamin Scholtysik (Reimold) authored Jul 7, 2017
2 parents 2d1af11 + 4676fbe commit 31912dc
Show file tree
Hide file tree
Showing 83 changed files with 2,690 additions and 1,820 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Mobile Center SDK for iOS Change Log

## Version 0.11.0

This version has a **breaking change** in the Crashes module and contains other bugfixes and improvements.

### MobileCenter

* **[Fix]** Fix a bug that caused logs to be discarded when re-enabling the sending of logs [#639](https://github.com/Microsoft/mobile-center-sdk-ios/pull/639).
* **[Misc]** This release replaces the file-based persistence with a sqlite-based implementation. This change does not require any change from your side.

### MobileCenterCrashes

* [**Breaking**] The SDK now uses Mach Exception Handling by default. Use `[MSCrashes disableMachExceptionHandler]`/`MSCrashes.disableMachExceptionHandler()` to disable that behavior. `[MSCrashes enableMachExceptionHandler]`/`MSCrashes.enableMachExceptionHandler()` has been removed [#637](https://github.com/Microsoft/mobile-center-sdk-ios/pull/637).

### MobileCenterPush

* **[Fix]** Fix a crash that was related to push notifications that were not intended for Mobile Center [#651](https://github.com/Microsoft/mobile-center-sdk-ios/pull/651).

___

## Version 0.10.1

This version contains a bugfix for crash attachments.
Expand Down
2 changes: 1 addition & 1 deletion Documentation/MobileCenter/.jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sdk: iphonesimulator
theme: ../Themes/apple

module: MobileCenter
module_version: 0.10.1
module_version: 0.11.0
author: Microsoft Corp
author_url: http://www.microsoft.com

Expand Down
2 changes: 1 addition & 1 deletion Documentation/MobileCenterAnalytics/.jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sdk: iphonesimulator
theme: ../Themes/apple

module: MobileCenterAnalytics
module_version: 0.10.1
module_version: 0.11.0
author: Microsoft Corp
author_url: http://www.microsoft.com

Expand Down
2 changes: 1 addition & 1 deletion Documentation/MobileCenterCrashes/.jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sdk: iphonesimulator
theme: ../Themes/apple

module: Crashes
module_version: 0.10.1
module_version: 0.11.0
author: Microsoft Corp
author_url: http://www.microsoft.com

Expand Down
2 changes: 1 addition & 1 deletion Documentation/MobileCenterDistribute/.jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sdk: iphonesimulator
theme: ../Themes/apple

module: Distribute
module_version: 0.10.1
module_version: 0.11.0
author: Microsoft Corp
author_url: http://www.microsoft.com

Expand Down
2 changes: 1 addition & 1 deletion Documentation/MobileCenterPush/.jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sdk: iphonesimulator
theme: ../Themes/apple

module: MobileCenterPush
module_version: 0.10.1
module_version: 0.11.0
author: Microsoft Corp
author_url: http://www.microsoft.com

Expand Down
2 changes: 1 addition & 1 deletion Global.xcconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BUILD_NUMBER = 1
VERSION_STRING = 0.10.1
VERSION_STRING = 0.11.0

SDK_NAME = mobilecenter.ios

Expand Down
3 changes: 2 additions & 1 deletion MobileCenter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MobileCenter'
s.version = '0.10.1'
s.version = '0.11.0'

s.summary = 'Mobile Center is mission control for mobile apps. Get faster release cycles, higher-quality apps, and the insights to build what users want.'
s.description = <<-DESC
Expand Down Expand Up @@ -41,6 +41,7 @@ Pod::Spec.new do |s|
s.subspec 'Core' do |ss|
ss.frameworks = 'Foundation', 'CoreTelephony', 'SystemConfiguration', 'UIKit'
ss.vendored_frameworks = "MobileCenter-SDK-iOS/MobileCenter.framework"
ss.libraries = 'sqlite3'
end

s.subspec 'Analytics' do |ss|
Expand Down
Loading

0 comments on commit 31912dc

Please sign in to comment.