Skip to content

Commit

Permalink
Bump SDK version to 0.2.44 (matrix-rust-sdk to 3555474cad1db56de3a700…
Browse files Browse the repository at this point in the history
…95878776eec994fd3b)
  • Loading branch information
github-actions committed Sep 11, 2024
1 parent d0270fd commit 3bc447d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/BuildVersionsSDK.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object BuildVersionsSDK {
const val majorVersion = 0
const val minorVersion = 2
const val patchVersion = 43
const val patchVersion = 44
}
Original file line number Diff line number Diff line change
Expand Up @@ -23955,6 +23955,7 @@ public object FfiConverterTypeRoomHero: FfiConverterRustBuffer<RoomHero> {

data class RoomInfo (
var `id`: kotlin.String,
var `creator`: kotlin.String?,
/**
* The room's name from the room state event if received from sync, or one
* that's been computed otherwise.
Expand Down Expand Up @@ -24028,6 +24029,7 @@ public object FfiConverterTypeRoomInfo: FfiConverterRustBuffer<RoomInfo> {
FfiConverterOptionalString.read(buf),
FfiConverterOptionalString.read(buf),
FfiConverterOptionalString.read(buf),
FfiConverterOptionalString.read(buf),
FfiConverterBoolean.read(buf),
FfiConverterBoolean.read(buf),
FfiConverterBoolean.read(buf),
Expand Down Expand Up @@ -24057,6 +24059,7 @@ public object FfiConverterTypeRoomInfo: FfiConverterRustBuffer<RoomInfo> {

override fun allocationSize(value: RoomInfo) = (
FfiConverterString.allocationSize(value.`id`) +
FfiConverterOptionalString.allocationSize(value.`creator`) +
FfiConverterOptionalString.allocationSize(value.`displayName`) +
FfiConverterOptionalString.allocationSize(value.`rawName`) +
FfiConverterOptionalString.allocationSize(value.`topic`) +
Expand Down Expand Up @@ -24089,6 +24092,7 @@ public object FfiConverterTypeRoomInfo: FfiConverterRustBuffer<RoomInfo> {

override fun write(value: RoomInfo, buf: ByteBuffer) {
FfiConverterString.write(value.`id`, buf)
FfiConverterOptionalString.write(value.`creator`, buf)
FfiConverterOptionalString.write(value.`displayName`, buf)
FfiConverterOptionalString.write(value.`rawName`, buf)
FfiConverterOptionalString.write(value.`topic`, buf)
Expand Down

0 comments on commit 3bc447d

Please sign in to comment.