Skip to content

Commit

Permalink
chore: update powersync sqlite core (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicGBauer authored Oct 11, 2024
1 parent 55cf059 commit bca5cc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit bca5cc5

Please sign in to comment.