Skip to content

Commit

Permalink
Bump SDK version to 0.2.24 (matrix-rust-sdk to 3917ba67c925aab5b939ac…
Browse files Browse the repository at this point in the history
…7211e32f5ece6b9784)
  • Loading branch information
github-actions committed Jun 7, 2024
1 parent cab4f94 commit 5855b87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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 = 23
const val patchVersion = 24
}
Original file line number Diff line number Diff line change
Expand Up @@ -29129,7 +29129,7 @@ sealed class TimelineItemContentKind: Disposable {
data class Sticker(
val `body`: kotlin.String,
val `info`: ImageInfo,
val `url`: kotlin.String) : TimelineItemContentKind() {
val `source`: MediaSource) : TimelineItemContentKind() {
companion object
}

Expand Down Expand Up @@ -29203,7 +29203,7 @@ sealed class TimelineItemContentKind: Disposable {
Disposable.destroy(
this.`body`,
this.`info`,
this.`url`)
this.`source`)

}
is TimelineItemContentKind.Poll -> {
Expand Down Expand Up @@ -29281,7 +29281,7 @@ public object FfiConverterTypeTimelineItemContentKind : FfiConverterRustBuffer<T
3 -> TimelineItemContentKind.Sticker(
FfiConverterString.read(buf),
FfiConverterTypeImageInfo.read(buf),
FfiConverterString.read(buf),
FfiConverterTypeMediaSource.read(buf),
)
4 -> TimelineItemContentKind.Poll(
FfiConverterString.read(buf),
Expand Down Expand Up @@ -29344,7 +29344,7 @@ public object FfiConverterTypeTimelineItemContentKind : FfiConverterRustBuffer<T
4UL
+ FfiConverterString.allocationSize(value.`body`)
+ FfiConverterTypeImageInfo.allocationSize(value.`info`)
+ FfiConverterString.allocationSize(value.`url`)
+ FfiConverterTypeMediaSource.allocationSize(value.`source`)
)
}
is TimelineItemContentKind.Poll -> {
Expand Down Expand Up @@ -29439,7 +29439,7 @@ public object FfiConverterTypeTimelineItemContentKind : FfiConverterRustBuffer<T
buf.putInt(3)
FfiConverterString.write(value.`body`, buf)
FfiConverterTypeImageInfo.write(value.`info`, buf)
FfiConverterString.write(value.`url`, buf)
FfiConverterTypeMediaSource.write(value.`source`, buf)
Unit
}
is TimelineItemContentKind.Poll -> {
Expand Down

0 comments on commit 5855b87

Please sign in to comment.