Skip to content

Commit ae9a08f

Browse files
committed
Bump to version 25.12.10 (matrix-rust-sdk/main b19377a96c6274641ebc85bd783474450a75776e)
1 parent 7fb8ca4 commit ae9a08f

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 = "0c20e338d1a905fd030ae841f574a2f8b08a932361524e615a255acb813fb2ba"
5-
let version = "25.12.09"
4+
let checksum = "c55635177ed444dae24f5d8e9e171cfdc264e055e39a298fd317ca3f0d006c29"
5+
let version = "25.12.10"
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
@@ -36512,6 +36512,10 @@ public enum TraceLogPacks: Equatable, Hashable {
3651236512
* Enables all the logs relevant to sync profiling.
3651336513
*/
3651436514
case syncProfiling
36515+
/**
36516+
* Enables all the logs relevant to the latest events.
36517+
*/
36518+
case latestEvents
3651536519

3651636520

3651736521

@@ -36543,6 +36547,8 @@ public struct FfiConverterTypeTraceLogPacks: FfiConverterRustBuffer {
3654336547

3654436548
case 5: return .syncProfiling
3654536549

36550+
case 6: return .latestEvents
36551+
3654636552
default: throw UniffiInternalError.unexpectedEnumCase
3654736553
}
3654836554
}
@@ -36570,6 +36576,10 @@ public struct FfiConverterTypeTraceLogPacks: FfiConverterRustBuffer {
3657036576
case .syncProfiling:
3657136577
writeInt(&buf, Int32(5))
3657236578

36579+
36580+
case .latestEvents:
36581+
writeInt(&buf, Int32(6))
36582+
3657336583
}
3657436584
}
3657536585
}

0 commit comments

Comments
 (0)