Skip to content

Commit

Permalink
version++
Browse files Browse the repository at this point in the history
  • Loading branch information
manuroe committed Sep 8, 2016
1 parent a166bf6 commit ca35c4c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
Changes in Matrix iOS SDK in 0.6.14 (2016-09-08)
================================================

Improvements:
* Allow MXSession to run the events stream in background for special cases
* MXEvent: Add the m.room.encrypted type
* MXSession: Expose the list of user ids for whom a 1:1 room exists (https://github.com/vector-im/vector-ios/issues/529).
* MXStore: Save MXUsers in the store (https://github.com/vector-im/vector-ios/issues/406).
* MXTools: Expose regex used to identify email address, user ids, room ids & and room aliases. Cache their regex objects to improve performance.
* MXTools: Add [MXTools isMatrixEventIdentifier:].
* MXTools: Add methods to create permalinks to room or event (https://github.com/vector-im/vector-ios/issues/547).

Bug fixes:
* MXKRoomState.aliases: some addresses are missing (https://github.com/vector-im/vector-ios/issues/528).
* MXFileStore: Stop leaking background tasks, which kill the app after 180s of bg.
* MXCall: Add a timeout for outgoing calls (https://github.com/vector-im/vector-ios/issues/577).
* MXJingleCallStackCall: When screen is locked, rotating the screen landscape makes local video preview go upside down (https://github.com/vector-im/vector-ios/issues/519).

Changes in Matrix iOS SDK in 0.6.13 (2016-08-25)
================================================

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.13"
s.version = "0.6.14"
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.13" }
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.6.14" }
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.13";
const NSString *MatrixSDKVersion = @"0.6.14";
NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification";
NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification";
NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification";
Expand Down

0 comments on commit ca35c4c

Please sign in to comment.