diff --git a/CHANGES.rst b/CHANGES.rst index 9737a5e748..79667e6340 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +Changes in Matrix iOS SDK in 0.10.7 (2018-03-30) +=============================================== + +Improvements: + * Make state event redaction handling gentler with homeserver (vector-im/riot-ios#1823). + +Bug fixes: + * Room summary is not updated after redaction of the room display name (vector-im/riot-ios#1822). + Changes in Matrix iOS SDK in 0.10.6 (2018-03-12) =============================================== diff --git a/MatrixSDK.podspec b/MatrixSDK.podspec index 5ab29548aa..4612a2a4ba 100644 --- a/MatrixSDK.podspec +++ b/MatrixSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "MatrixSDK" - s.version = "0.10.6" + s.version = "0.10.7" s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)" s.description = <<-DESC @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.author = { "matrix.org" => "support@matrix.org" } s.social_media_url = "http://twitter.com/matrixdotorg" - s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.6" } + s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.7" } s.requires_arc = true diff --git a/MatrixSDK/MXSession.m b/MatrixSDK/MXSession.m index 3a3333ebda..252ecdbaa3 100644 --- a/MatrixSDK/MXSession.m +++ b/MatrixSDK/MXSession.m @@ -39,7 +39,7 @@ #pragma mark - Constants definitions -const NSString *MatrixSDKVersion = @"0.10.6"; +const NSString *MatrixSDKVersion = @"0.10.7"; NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification"; NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification"; NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification"; diff --git a/SwiftMatrixSDK.podspec b/SwiftMatrixSDK.podspec index 11637835f5..9b4e645f09 100644 --- a/SwiftMatrixSDK.podspec +++ b/SwiftMatrixSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SwiftMatrixSDK" - s.version = "0.10.6" + s.version = "0.10.7" s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)" s.description = <<-DESC @@ -20,7 +20,7 @@ Pod::Spec.new do |s| s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.10" - s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.6" } + s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.7" } s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m,swift}" s.requires_arc = true