Skip to content

Commit 174d50b

Browse files
committed
version++
1 parent 4678a65 commit 174d50b

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Improvements:
1212

1313
Bug fixes:
1414
* Push: Missing push notifications after answering a call (vector-im/riot-ios#1757).
15+
* Direct Chat: a room was marked as direct by mistake when I joined it.
1516
* MXRoom: Canceled message can be sent if there is only one in the message sending queue.
1617
* MXTools: Fix the regex part for the HS domain part in all isMatrixXxxxIdentifier methods.
1718
* MXFileStore: commits can stay pending after [MXFileStore close].

MatrixSDK.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "MatrixSDK"
4-
s.version = "0.10.5"
4+
s.version = "0.10.6"
55
s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)"
66

77
s.description = <<-DESC
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.author = { "matrix.org" => "support@matrix.org" }
1818
s.social_media_url = "http://twitter.com/matrixdotorg"
1919

20-
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.5" }
20+
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.6" }
2121

2222
s.requires_arc = true
2323

@@ -36,7 +36,7 @@ Pod::Spec.new do |s|
3636

3737
# Requirements for e2e encryption
3838
ss.dependency 'OLMKit', '~> 2.2.2'
39-
ss.dependency 'Realm', '~> 3.1.0'
39+
ss.dependency 'Realm', '~> 3.1.1'
4040
end
4141

4242
s.subspec 'JingleCallStack' do |ss|

MatrixSDK/MXSession.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
#pragma mark - Constants definitions
4141

42-
const NSString *MatrixSDKVersion = @"0.10.5";
42+
const NSString *MatrixSDKVersion = @"0.10.6";
4343
NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification";
4444
NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification";
4545
NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification";

SwiftMatrixSDK.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "SwiftMatrixSDK"
4-
s.version = "0.10.5"
4+
s.version = "0.10.6"
55
s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)"
66

77
s.description = <<-DESC
@@ -20,7 +20,7 @@ Pod::Spec.new do |s|
2020
s.ios.deployment_target = "8.0"
2121
s.osx.deployment_target = "10.10"
2222

23-
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.5" }
23+
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.10.6" }
2424
s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m,swift}"
2525

2626
s.requires_arc = true
@@ -30,6 +30,6 @@ Pod::Spec.new do |s|
3030

3131
# Requirements for e2e encryption
3232
s.dependency 'OLMKit', '~> 2.2.2'
33-
s.dependency 'Realm', '~> 3.1.0'
33+
s.dependency 'Realm', '~> 3.1.1'
3434

3535
end

0 commit comments

Comments
 (0)