Skip to content

Commit 0050c56

Browse files
committed
Bump to v1.0.24-alpha (matrix-rust-sdk 6eda742fff98668bb77a9a8750ecc1aad0627b80)
1 parent e468f87 commit 0050c56

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

6-
let checksum = "93715098185ee35f44c698091f6a665ed88745d95522e16b2593e1fe6c431d9b"
7-
let version = "v1.0.23-alpha"
6+
let checksum = "55b0787651aa7bd7afe19e2324ecdb7301d87e177d353e6b5493d38ee1cc1912"
7+
let version = "v1.0.24-alpha"
88
let url = "https://github.com/matrix-org/matrix-rust-components-swift/releases/download/\(version)/MatrixSDKFFI.xcframework.zip"
99

1010
let package = Package(

Sources/MatrixRustSDK/matrix_sdk_ffi.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1414,6 +1414,7 @@ public protocol RoomProtocol {
14141414
func `membership`() -> Membership
14151415
func `name`() -> String?
14161416
func `removeTimeline`()
1417+
func `retryDecryption`(`sessionIds`: [String])
14171418
func `topic`() -> String?
14181419

14191420
}
@@ -1635,6 +1636,15 @@ public class Room: RoomProtocol {
16351636

16361637
_uniffi_matrix_sdk_ffi_impl_Room_remove_timeline_a9df(self.pointer, $0
16371638
)
1639+
}
1640+
}
1641+
public func `retryDecryption`(`sessionIds`: [String]) {
1642+
try!
1643+
rustCall() {
1644+
1645+
_uniffi_matrix_sdk_ffi_impl_Room_retry_decryption_b803(self.pointer,
1646+
FfiConverterSequenceString.lower(`sessionIds`), $0
1647+
)
16381648
}
16391649
}
16401650
public func `topic`() -> String? {

0 commit comments

Comments
 (0)