Skip to content

Commit 510689e

Browse files
committed
Bump to version v1.0.6 (matrix-rust-sdk/main 1380af4)
1 parent 535c89c commit 510689e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
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 = "46e2bea4a7016a5f8c36522c063640673f7caa3c9db683e47987d80beb5c8627"
5-
let version = "v1.0.5"
4+
let checksum = "e3122675004b523102cc800d8dac6c2f157c191ddafdd77c3b83ba2155219da3"
5+
let version = "v1.0.6"
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15361,6 +15361,7 @@ public enum HumanQrLoginError {
1536115361
case InvalidQrCode
1536215362
case SlidingSyncNotAvailable
1536315363
case OidcMetadataInvalid
15364+
case OtherDeviceNotSignedIn
1536415365
}
1536515366

1536615367

@@ -15383,6 +15384,7 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
1538315384
case 7: return .InvalidQrCode
1538415385
case 8: return .SlidingSyncNotAvailable
1538515386
case 9: return .OidcMetadataInvalid
15387+
case 10: return .OtherDeviceNotSignedIn
1538615388

1538715389
default: throw UniffiInternalError.unexpectedEnumCase
1538815390
}
@@ -15430,6 +15432,10 @@ public struct FfiConverterTypeHumanQrLoginError: FfiConverterRustBuffer {
1543015432
case .OidcMetadataInvalid:
1543115433
writeInt(&buf, Int32(9))
1543215434

15435+
15436+
case .OtherDeviceNotSignedIn:
15437+
writeInt(&buf, Int32(10))
15438+
1543315439
}
1543415440
}
1543515441
}

0 commit comments

Comments
 (0)