Skip to content

Commit

Permalink
Prepare matrix-ios-sdk release v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
giomfo committed Mar 17, 2016
1 parent 69ddf5e commit cfba01e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Changes in Matrix iOS SDK in 0.6.4 (2016-03-17)
===============================================

Improvements:
* MXRoom: Update unread events handling (ignore m.room.member events and redacted events).
* MXRoomPowerLevels: power level values are signed.
* MXStore: Retrieve the receipt for a user in a room.

Bug fixes:
* App crashes on redacted event handling.
* The account data changes are ignored (Favorites section is not refreshed correctly).

Changes in Matrix iOS SDK in 0.6.3 (2016-03-07)
===============================================

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.6.3"
s.version = "0.6.4"
s.summary = "The iOS SDK to build apps compatible with Matrix (http://www.matrix.org)"

s.description = <<-DESC
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|

s.platform = :ios, "7.0"

s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.6.3" }
s.source = { :git => "https://github.com/matrix-org/matrix-ios-sdk.git", :tag => "v0.6.4" }
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 @@ -28,7 +28,7 @@

#pragma mark - Constants definitions

const NSString *MatrixSDKVersion = @"0.6.3";
const NSString *MatrixSDKVersion = @"0.6.4";
NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification";
NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification";
NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification";
Expand Down

0 comments on commit cfba01e

Please sign in to comment.