Skip to content

Commit

Permalink
-> 0.6.12
Browse files Browse the repository at this point in the history
  • Loading branch information
manuroe committed Aug 1, 2016
1 parent f70f40d commit f852e7f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Changes in Matrix iOS SDK in 0.6.12 (2016-08-01)
================================================

Improvements:
* MXCallManager: Better handle call invites when the app resumes.
* MXCall: Improve the sending of local ICE candidates to avoid HTTP 429(Too Many Requests) response
* MXCall: Added the audioToSpeaker property to choose between the main and the ear speaker.
* MXRoomState: Added the joinedMembers property.
* MXLogger: Added the isMainThread information in crash logs.

Bug fixes:
* MXJingleCallStackCall: Added sanity check on creation of RTCICEServer objects as crashes have been reported.

Changes in Matrix iOS SDK in 0.6.11 (2016-07-26)
================================================

Expand Down
4 changes: 2 additions & 2 deletions MatrixSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "MatrixSDK"
s.version = "0.6.11"
s.version = "0.6.12"
s.summary = "The iOS SDK to build apps compatible with Matrix (http://www.matrix.org)"

s.description = <<-DESC
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|

s.platform = :ios, "7.0"

s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.6.11" }
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.6.12" }
s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m}"
s.resources = "MatrixSDK/Data/Store/MXCoreDataStore/*.xcdatamodeld"

Expand Down
2 changes: 1 addition & 1 deletion MatrixSDK/MXSession.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#pragma mark - Constants definitions

const NSString *MatrixSDKVersion = @"0.6.11";
const NSString *MatrixSDKVersion = @"0.6.12";
NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification";
NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification";
NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification";
Expand Down

0 comments on commit f852e7f

Please sign in to comment.