Skip to content

Commit

Permalink
version++
Browse files Browse the repository at this point in the history
  • Loading branch information
manuroe committed Mar 30, 2018
1 parent a190af8 commit b129cd2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
===============================================

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.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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion MatrixSDK/MXSession.m
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions SwiftMatrixSDK.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit b129cd2

Please sign in to comment.