Skip to content

Commit 42274cc

Browse files
committed
Bump to v0.0.6-november23 (matrix-rust-sdk/poljar/recovery 88a6ed6b5ba2975d9a84a37052cfbac5b096ff62)
1 parent 415201c commit 42274cc

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
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 = "c9aea7bb21ca0eeeec50e700f6b2dee9dd634e018817553f3865c4277e784ea3"
7-
let version = "v0.0.5-november23"
6+
let checksum = "6785766618d845faac234513951b9b0c29debc672129a45ac2d766206ba3180a"
7+
let version = "v0.0.6-november23"
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: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12722,6 +12722,7 @@ extension RoomError: Error { }
1272212722
public enum RoomListEntriesDynamicFilterKind {
1272312723

1272412724
case all
12725+
case allNonLeft
1272512726
case none
1272612727
case normalizedMatchRoomName(pattern: String)
1272712728
case fuzzyMatchRoomName(pattern: String)
@@ -12736,13 +12737,15 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
1273612737

1273712738
case 1: return .all
1273812739

12739-
case 2: return .none
12740+
case 2: return .allNonLeft
1274012741

12741-
case 3: return .normalizedMatchRoomName(
12742+
case 3: return .none
12743+
12744+
case 4: return .normalizedMatchRoomName(
1274212745
pattern: try FfiConverterString.read(from: &buf)
1274312746
)
1274412747

12745-
case 4: return .fuzzyMatchRoomName(
12748+
case 5: return .fuzzyMatchRoomName(
1274612749
pattern: try FfiConverterString.read(from: &buf)
1274712750
)
1274812751

@@ -12758,17 +12761,21 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
1275812761
writeInt(&buf, Int32(1))
1275912762

1276012763

12761-
case .none:
12764+
case .allNonLeft:
1276212765
writeInt(&buf, Int32(2))
1276312766

1276412767

12765-
case let .normalizedMatchRoomName(pattern):
12768+
case .none:
1276612769
writeInt(&buf, Int32(3))
12770+
12771+
12772+
case let .normalizedMatchRoomName(pattern):
12773+
writeInt(&buf, Int32(4))
1276712774
FfiConverterString.write(pattern, into: &buf)
1276812775

1276912776

1277012777
case let .fuzzyMatchRoomName(pattern):
12771-
writeInt(&buf, Int32(4))
12778+
writeInt(&buf, Int32(5))
1277212779
FfiConverterString.write(pattern, into: &buf)
1277312780

1277412781
}

0 commit comments

Comments
 (0)