Skip to content

Commit

Permalink
Version ++
Browse files Browse the repository at this point in the history
  • Loading branch information
giomfo committed Mar 23, 2017
1 parent 6e7267a commit e83a1cb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes in Matrix iOS SDK in 0.7.11 (2017-03-23)
===============================================

Improvements:
* MXSDKOptions: Let the application define its own media cache version (see `mediaCacheAppVersion`).
* MXMediaManager: Consider a cache version based on the version defined by the application and the one defined at the SDK level.

Changes in Matrix iOS SDK in 0.7.10 (2017-03-21)
===============================================

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.7.10"
s.version = "0.7.11"
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 = "7.0"
s.osx.deployment_target = "10.9"

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

#pragma mark - Constants definitions

const NSString *MatrixSDKVersion = @"0.7.10";
const NSString *MatrixSDKVersion = @"0.7.11";
NSString *const kMXSessionStateDidChangeNotification = @"kMXSessionStateDidChangeNotification";
NSString *const kMXSessionNewRoomNotification = @"kMXSessionNewRoomNotification";
NSString *const kMXSessionWillLeaveRoomNotification = @"kMXSessionWillLeaveRoomNotification";
Expand Down

0 comments on commit e83a1cb

Please sign in to comment.