Skip to content

Commit

Permalink
version++
Browse files Browse the repository at this point in the history
  • Loading branch information
manuroe committed Aug 1, 2017
1 parent fc8646a commit 58dc1b3
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
26 changes: 26 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
Changes in Matrix iOS SDK in 0.9.0 (2017-08-01)
===============================================

Improvements:
* Be more robust against JSON data sent by the homeserver.
* MXRestClient: Add searchUsers method to search user from the homeserver user directory.
* MXRestClient: Change API used to add email in order to check if the email (or msisdn) is already used (https://github.com/vector-im/riot-meta#85).
* App Extension support: wrap access to UIApplication shared instance
* MXSession: Pause could not be delayed if no background mode handler has been set in the MXSDKOptions.
* MXRoomState: do copy of membersNamesCache content in memberName rather than in copyWithZone.

* SwiftMatrixSDK
* Add swift refinements to MXSession event listeners, thanks to @aapierce0 (PR #327).
* Update the access control for the identifier property on some swift enums, thanks to @aapierce0 (PR #330).
* Add Swift refinements to MXRoom class, thanks to @aapierce0 (PR #335).
* Add Swift refinements to MXRoomPowerLevels, thanks to @aapierce0 (PR #336).
* Add swift refinements to MXRoomState, thanks to @aapierce0 (PR #338).

Bug fixes:
* Getting notifications for unrelated messages (https://github.com/vector-im/riot-android/issues/1407).
* Crypto: Fix crash when encountering a badly formatted olm message (https://github.commatrix-org/riot-ios-rageshakes#107).
* MXSession: Missing a call to failure callback on unknown token, thanks to @aapierce0 (PR #331).
* Fixed an issue that would prevent attachments from being downloaded via SSL connections when using a custom CA ceritficate that was included in the bundle, thanks to @javierquevedo (PR #332).
* Avatars do not display with account on a self-signed server (https://github.com/vector-im/riot-ios/issues/816).
* MXRestClient: Escape userId in CS API requests,

Changes in Matrix iOS SDK in 0.8.2 (2017-06-30)
===============================================

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.8.2"
s.version = "0.9.0"
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.8.2" }
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.9.0" }
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 @@ -39,7 +39,7 @@

#pragma mark - Constants definitions

const NSString *MatrixSDKVersion = @"0.8.2";
const NSString *MatrixSDKVersion = @"0.9.0";
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.8.2"
s.version = "0.9.0"
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.8.2" }
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.9.0" }
s.source_files = "MatrixSDK", "MatrixSDK/**/*.{h,m,swift}"
s.exclude_files = "MatrixSDK/**/MXGoogleAnalytics.{h,m}"
s.resources = "MatrixSDK/Data/Store/MXCoreDataStore/*.xcdatamodeld"
Expand Down

0 comments on commit 58dc1b3

Please sign in to comment.