Skip to content

Commit 5cc3a5c

Browse files
committed
Bump to version v1.0.7 (matrix-rust-sdk/main 3ac5986)
1 parent 510689e commit 5cc3a5c

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// swift-tools-version:5.9
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33
import PackageDescription
4-
let checksum = "e3122675004b523102cc800d8dac6c2f157c191ddafdd77c3b83ba2155219da3"
5-
let version = "v1.0.6"
4+
let checksum = "a5f2d9aa509b632a4dbf8bfd9ed6ad757c70f5603de8f507b3366f98499a3b7a"
5+
let version = "v1.0.7"
66
let url = "https://github.com/element-hq/matrix-rust-components-swift/releases/download/\(version)/MatrixSDKFFI.xcframework.zip"
77
let package = Package(
88
name: "MatrixRustSDK",

Sources/MatrixRustSDK/matrix_sdk_ffi.swift

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15358,7 +15358,6 @@ public enum HumanQrLoginError {
1535815358
case ConnectionInsecure
1535915359
case Declined
1536015360
case Unknown
15361-
case InvalidQrCode
1536215361
case SlidingSyncNotAvailable
1536315362
case OidcMetadataInvalid
1536415363
case OtherDeviceNotSignedIn
@@ -15381,10 +15380,9 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
1538115380
case 4: return .ConnectionInsecure
1538215381
case 5: return .Declined
1538315382
case 6: return .Unknown
15384-
case 7: return .InvalidQrCode
15385-
case 8: return .SlidingSyncNotAvailable
15386-
case 9: return .OidcMetadataInvalid
15387-
case 10: return .OtherDeviceNotSignedIn
15383+
case 7: return .SlidingSyncNotAvailable
15384+
case 8: return .OidcMetadataInvalid
15385+
case 9: return .OtherDeviceNotSignedIn
1538815386

1538915387
default: throw UniffiInternalError.unexpectedEnumCase
1539015388
}
@@ -15421,20 +15419,16 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
1542115419
writeInt(&buf, Int32(6))
1542215420

1542315421

15424-
case .InvalidQrCode:
15425-
writeInt(&buf, Int32(7))
15426-
15427-
1542815422
case .SlidingSyncNotAvailable:
15429-
writeInt(&buf, Int32(8))
15423+
writeInt(&buf, Int32(7))
1543015424

1543115425

1543215426
case .OidcMetadataInvalid:
15433-
writeInt(&buf, Int32(9))
15427+
writeInt(&buf, Int32(8))
1543415428

1543515429

1543615430
case .OtherDeviceNotSignedIn:
15437-
writeInt(&buf, Int32(10))
15431+
writeInt(&buf, Int32(9))
1543815432

1543915433
}
1544015434
}

0 commit comments

Comments
 (0)