Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit fe6415a

Browse files
committed
Merge branch 'release/0.16.6/master'
2 parents 214253c + 525f7f7 commit fe6415a

File tree

6 files changed

+24
-13
lines changed

6 files changed

+24
-13
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## Changes in 0.16.6 (2021-10-12)
2+
3+
🙌 Improvements
4+
5+
- Upgrade MatrixSDK version ([v0.20.6](https://github.com/matrix-org/matrix-ios-sdk/releases/tag/v0.20.6)).
6+
7+
🐛 Bugfixes
8+
9+
- MXKEventFormatter: Fixed invalid parameters passed to generated localization functions. ([#4899](https://github.com/vector-im/element-ios/issues/4899))
10+
11+
112
## Changes in 0.16.5 (2021-10-08)
213

314
🙌 Improvements

MatrixKit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "MatrixKit"
4-
s.version = "0.16.5"
4+
s.version = "0.16.6"
55
s.summary = "The Matrix reusable UI library for iOS based on MatrixSDK."
66

77
s.description = <<-DESC
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323

2424
s.swift_version = '5.0'
2525

26-
s.dependency 'MatrixSDK', "= 0.20.5"
26+
s.dependency 'MatrixSDK', "= 0.20.6"
2727
s.dependency 'HPGrowingTextView', '~> 1.1'
2828
s.dependency 'libPhoneNumber-iOS', '~> 0.9.13'
2929
s.dependency 'DTCoreText', '~> 1.6.25'

MatrixKit/MatrixKitVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
#import <Foundation/Foundation.h>
1818

19-
NSString *const MatrixKitVersion = @"0.16.5";
19+
NSString *const MatrixKitVersion = @"0.16.6";

MatrixKit/Utils/EventFormatter/MXKEventFormatter.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -997,11 +997,11 @@ - (NSAttributedString *)attributedStringFromEvent:(MXEvent *)event withRoomState
997997
{
998998
if (isRoomDirect)
999999
{
1000-
displayText = [MatrixKitL10n noticeRoomAliasesForDm:aliases];
1000+
displayText = [MatrixKitL10n noticeRoomAliasesForDm:[aliases componentsJoinedByString:@", "]];
10011001
}
10021002
else
10031003
{
1004-
displayText = [MatrixKitL10n noticeRoomAliases:aliases];
1004+
displayText = [MatrixKitL10n noticeRoomAliases:[aliases componentsJoinedByString:@", "]];
10051005
}
10061006
// Append redacted info if any
10071007
if (redactedInfo)
@@ -1017,7 +1017,7 @@ - (NSAttributedString *)attributedStringFromEvent:(MXEvent *)event withRoomState
10171017
MXJSONModelSetArray(groups, event.content[@"groups"]);
10181018
if (groups)
10191019
{
1020-
displayText = [MatrixKitL10n noticeRoomRelatedGroups:groups];
1020+
displayText = [MatrixKitL10n noticeRoomRelatedGroups:[groups componentsJoinedByString:@", "]];
10211021
// Append redacted info if any
10221022
if (redactedInfo)
10231023
{

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ abstract_target 'MatrixKitSamplePods' do
88

99
# Different flavours of pods to Matrix SDK
1010
# The tagged version on which this version of MatrixKit has been built
11-
pod 'MatrixSDK', '= 0.20.5'
11+
pod 'MatrixSDK', '= 0.20.6'
1212

1313
# The lastest release available on the CocoaPods repository
1414
#pod 'MatrixSDK'

Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ PODS:
3939
- JSQSystemSoundPlayer (2.0.1)
4040
- libbase58 (0.1.4)
4141
- libPhoneNumber-iOS (0.9.15)
42-
- MatrixSDK (0.20.5):
43-
- MatrixSDK/Core (= 0.20.5)
44-
- MatrixSDK/Core (0.20.5):
42+
- MatrixSDK (0.20.6):
43+
- MatrixSDK/Core (= 0.20.6)
44+
- MatrixSDK/Core (0.20.6):
4545
- AFNetworking (~> 4.0.0)
4646
- GZIP (~> 1.3.0)
4747
- libbase58 (~> 0.1.4)
@@ -65,7 +65,7 @@ DEPENDENCIES:
6565
- HPGrowingTextView (~> 1.1)
6666
- JSQMessagesViewController (~> 7.3.5)
6767
- libPhoneNumber-iOS (~> 0.9.13)
68-
- MatrixSDK (= 0.20.5)
68+
- MatrixSDK (= 0.20.6)
6969
- SwiftGen (~> 6.3)
7070

7171
SPEC REPOS:
@@ -97,12 +97,12 @@ SPEC CHECKSUMS:
9797
JSQSystemSoundPlayer: c5850e77a4363ffd374cd851154b9af93264ed8d
9898
libbase58: 7c040313537b8c44b6e2d15586af8e21f7354efd
9999
libPhoneNumber-iOS: 0a32a9525cf8744fe02c5206eb30d571e38f7d75
100-
MatrixSDK: 417fac309f510b5f8ac121ba8abe3b897953e1ce
100+
MatrixSDK: 37d6bc484fa90c39db46ed25fd3a4c707bb70452
101101
OLMKit: 9fb4799c4a044dd2c06bda31ec31a12191ad30b5
102102
Realm: b6027801398f3743fc222f096faa85281b506e6c
103103
SwiftGen: a6d22010845f08fe18fbdf3a07a8e380fd22e0ea
104104
SwiftyBeaver: 84069991dd5dca07d7069100985badaca7f0ce82
105105

106-
PODFILE CHECKSUM: 31fd74645e3a14547db8a45cf20455c1702772dd
106+
PODFILE CHECKSUM: 9ed0d5caf99a14f842e55d869d676a986a36d72f
107107

108108
COCOAPODS: 1.11.2

0 commit comments

Comments
 (0)