Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ internal class PowerSyncDatabaseImpl(
}

// Validate ^0.2.0
if (versionInts[0] != 0 || versionInts[1] != 2 || versionInts[2] < 0) {
if (versionInts[0] != 0 || versionInts[1] < 2 || versionInts[2] < 0) {
throw Exception("Unsupported powersync extension version. Need ^0.2.0, got: $version")
}
}
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-todolist/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ kotlin {
ios.deploymentTarget = "14.1"
podfile = project.file("../iosApp/Podfile")
pod("powersync-sqlite-core") {
version = "0.2.1"
version = "0.3.0"
linkOnly = true
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kotlinx-datetime = "0.5.0"
kotlinx-io = "0.3.0"
ktor = "2.3.10"
uuid = "0.8.2"
powersync-core = "0.2.1"
powersync-core = "0.3.0"
sqlite-android = "3.45.0"

sqlDelight = "2.0.2"
Expand Down
Loading