File tree Expand file tree Collapse file tree 6 files changed +26
-11
lines changed Expand file tree Collapse file tree 6 files changed +26
-11
lines changed Original file line number Diff line number Diff line change 1+ ## Changes in 0.27.11 (2024-06-18)
2+
3+ No significant changes.
4+
5+
16## Changes in 0.27.10 (2024-06-17)
27
38No significant changes.
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22
33 s . name = "MatrixSDK"
4- s . version = "0.27.10 "
4+ s . version = "0.27.11 "
55 s . summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)"
66
77 s . description = <<-DESC
Original file line number Diff line number Diff line change 2929#import " MatrixSDKSwiftHeader.h"
3030#import " MXFileRoomSummaryStore.h"
3131
32- static NSUInteger const kMXFileVersion = 82 ; // Check getUnreadRoomFromStore if you update this value. Delete this comment after
32+ static NSUInteger const kMXFileVersion = 83 ; // Check getUnreadRoomFromStore if you update this value. Delete this comment after
3333
3434static NSString *const kMXFileStoreFolder = @" MXFileStore" ;
3535static NSString *const kMXFileStoreMedaDataFile = @" MXFileStore" ;
Original file line number Diff line number Diff line change 1616
1717#import < Foundation/Foundation.h>
1818
19- NSString *const MatrixSDKVersion = @" 0.27.10 " ;
19+ NSString *const MatrixSDKVersion = @" 0.27.11 " ;
Original file line number Diff line number Diff line change @@ -140,7 +140,9 @@ + (void)initialize
140140 @(MXEventTypePollResponse) : kMXEventTypeStringPollResponseMSC3381 ,
141141 @(MXEventTypePollEnd) : kMXEventTypeStringPollEndMSC3381 ,
142142 @(MXEventTypeBeaconInfo) : kMXEventTypeStringBeaconInfoMSC3672 ,
143- @(MXEventTypeBeacon) : kMXEventTypeStringBeaconMSC3672
143+ @(MXEventTypeBeacon) : kMXEventTypeStringBeaconMSC3672 ,
144+
145+ @(MXEventTypeRoomRetention): kMXEventTypeStringRoomRetention
144146 };
145147
146148 eventTypeMapStringToEnum = @{
Original file line number Diff line number Diff line change 99.. image :: https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg?style=flat-square
1010 :target: https://opensource.org/licenses/Apache-2.0
1111
12+ ==============
1213Matrix iOS SDK
1314==============
1415
@@ -20,6 +21,18 @@ This SDK implements an interface to communicate with the Matrix Client/Server
2021API which is defined at http://matrix.org/docs/api/client-server/.
2122
2223
24+ Pod Deprecation
25+ ===============
26+
27+ The SDK is no longer published directly to Cocopods following recent linting issues
28+ with Xcode 14.3 and greater: `CocoaPods/CocoaPods#11839 <https://github.com/CocoaPods/CocoaPods/issues/11839 >`_.
29+ This deprecation *only * covers the published pod, the SDK is still being maintained.
30+
31+ It is however worth noting that we're now primarily focussed on the `Matrix Rust SDK <https://github.com/matrix-org/matrix-rust-sdk >`_
32+ and its respective FFI bindings which are available as a `Swift package <https://github.com/matrix-org/matrix-rust-components-swift/ >`_.
33+ This would likely be a more sensible choice for anyone starting a new project using Matrix on Apple platforms.
34+
35+
2336Use the SDK in your app
2437=======================
2538
@@ -29,15 +42,10 @@ In order to set this up::
2942 sudo gem install cocoapods
3043 pod setup
3144
32- The best way to add the last release of the Matrix SDK to your application
33- project is to add the MatrixSDK dependency to your Podfile::
34-
35- pod 'MatrixSDK'
45+ The best way to add the Matrix SDK to your application is to add the MatrixSDK repo to your Podfile::
3646
37- If you want to use the develop version of the SDK, use instead:
47+ pod 'MatrixSDK', :git => 'https://github.com/matrix-org/matrix-ios-sdk.git', :tag => 'vX.Y.Z'
3848
39- pod 'MatrixSDK', :git => 'https://github.com/matrix-org/matrix-ios-sdk.git',
40- :branch => 'develop'
4149
4250Options
4351=======
You can’t perform that action at this time.
0 commit comments