Skip to content

Commit 80331b4

Browse files
committed
Bump to version 25.07.02 (matrix-rust-sdk/HEAD 3c873262c703848ba7743c19b10b7c1d5cf72b9c)
1 parent d39b027 commit 80331b4

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
@@ -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 = "dba8765e8b651801c1fedbfcd125e3e80f8ac3dc05bac2814dde84841c668a2f"
5-
let version = "25.07.01"
4+
let checksum = "30b2549d0277f54f134328b47947991d1d27a543ab2d66e2b07d1781c88a41e0"
5+
let version = "25.07.02"
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30535,6 +30535,10 @@ public enum TraceLogPacks {
3053530535
* Enables all the logs relevant to the timeline.
3053630536
*/
3053730537
case timeline
30538+
/**
30539+
* Enables all the logs relevant to the notification client.
30540+
*/
30541+
case notificationClient
3053830542
}
3053930543

3054030544

@@ -30551,6 +30555,8 @@ public struct FfiConverterTypeTraceLogPacks: FfiConverterRustBuffer {
3055130555

3055230556
case 3: return .timeline
3055330557

30558+
case 4: return .notificationClient
30559+
3055430560
default: throw UniffiInternalError.unexpectedEnumCase
3055530561
}
3055630562
}
@@ -30570,6 +30576,10 @@ public struct FfiConverterTypeTraceLogPacks: FfiConverterRustBuffer {
3057030576
case .timeline:
3057130577
writeInt(&buf, Int32(3))
3057230578

30579+
30580+
case .notificationClient:
30581+
writeInt(&buf, Int32(4))
30582+
3057330583
}
3057430584
}
3057530585
}

0 commit comments

Comments
 (0)