From 42e813bebe002c43e4a2fd981241252e464b294f Mon Sep 17 00:00:00 2001 From: Giom Foret Date: Tue, 21 Mar 2017 18:31:10 +0100 Subject: [PATCH] version++ --- CHANGES.rst | 6 ++++++ MatrixSDK.podspec | 4 ++-- MatrixSDK/MXSession.m | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ae07feadff..501611f38d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Changes in Matrix iOS SDK in 0.7.10 (2017-03-21) +=============================================== + +Bug fix: + * Registration with email failed when the email address is validated on the mobile phone. + Changes in Matrix iOS SDK in 0.7.9 (2017-03-16) =============================================== diff --git a/MatrixSDK.podspec b/MatrixSDK.podspec index 8397cbb558..9c26a33999 100644 --- a/MatrixSDK.podspec +++ b/MatrixSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "MatrixSDK" - s.version = "0.7.9" + s.version = "0.7.10" 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 = "7.0" s.osx.deployment_target = "10.9" - s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.7.9" } + s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.7.10" } s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m}" s.resources = "MatrixSDK/Data/Store/MXCoreDataStore/*.xcdatamodeld" diff --git a/MatrixSDK/MXSession.m b/MatrixSDK/MXSession.m index 0a4d45f488..407cbbef26 100644 --- a/MatrixSDK/MXSession.m +++ b/MatrixSDK/MXSession.m @@ -41,7 +41,7 @@ #pragma mark - Constants definitions -const NSString *MatrixSDKVersion = @"0.7.9"; +const NSString *MatrixSDKVersion = @"0.7.10"; NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification"; NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification"; NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification";