Skip to content

Commit bca5cc5

Browse files
chore: update powersync sqlite core (#67)
1 parent 55cf059 commit bca5cc5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/commonMain/kotlin/com/powersync/db/PowerSyncDatabaseImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ internal class PowerSyncDatabaseImpl(
351351
}
352352

353353
// Validate ^0.2.0
354-
if (versionInts[0] != 0 || versionInts[1] != 2 || versionInts[2] < 0) {
354+
if (versionInts[0] != 0 || versionInts[1] < 2 || versionInts[2] < 0) {
355355
throw Exception("Unsupported powersync extension version. Need ^0.2.0, got: $version")
356356
}
357357
}

demos/supabase-todolist/shared/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ kotlin {
2727
ios.deploymentTarget = "14.1"
2828
podfile = project.file("../iosApp/Podfile")
2929
pod("powersync-sqlite-core") {
30-
version = "0.2.1"
30+
version = "0.3.0"
3131
linkOnly = true
3232
}
3333

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kotlinx-datetime = "0.5.0"
1515
kotlinx-io = "0.3.0"
1616
ktor = "2.3.10"
1717
uuid = "0.8.2"
18-
powersync-core = "0.2.1"
18+
powersync-core = "0.3.0"
1919
sqlite-android = "3.45.0"
2020

2121
sqlDelight = "2.0.2"

0 commit comments

Comments
 (0)