diff --git a/CHANGELOG.md b/CHANGELOG.md index d2d5b92f..4b3cd17c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 1.0.0-BETA19 + +* Allow cursor to columns by name +* BREAKING CHANGE: If you were using `SqlCursor` from SqlDelight previously for your own custom mapper then you must now change to `SqlCursor` exported by the PowerSync module. + + Previously you would import it like this: + + ```kotlin + import app.cash.sqldelight.db.SqlCursor + ``` + + now it has been changed to: + + ```kotlin + import com.powersync.db.SqlCursor + ``` + + + ## 1.0.0-BETA18 * BREAKING CHANGE: Move from async sqldelight calls to synchronous calls. This will only affect `readTransaction` and `writeTransaction`where the callback function is no longer asynchronous. diff --git a/gradle.properties b/gradle.properties index 2c992a90..648ca296 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,7 +17,7 @@ development=true RELEASE_SIGNING_ENABLED=true # Library config GROUP=com.powersync -LIBRARY_VERSION=1.0.0-BETA18 +LIBRARY_VERSION=1.0.0-BETA19 GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git # POM POM_URL=https://github.com/powersync-ja/powersync-kotlin/