Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.0-BETA15

* Update powersync-sqlite-core to 0.3.8
* Increase maximum amount of columns from 69 to 1999

## 1.0.0-BETA14

* Add JVM compatibility
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.powersync.db.schema

import kotlinx.serialization.Serializable

private const val MAX_AMOUNT_OF_COLUMNS = 63
private const val MAX_AMOUNT_OF_COLUMNS = 1999

/**
* A single table in the schema.
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.3.6"
version = "0.3.8"
linkOnly = true
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ development=true
RELEASE_SIGNING_ENABLED=true
# Library config
GROUP=com.powersync
LIBRARY_VERSION=1.0.0-BETA14
LIBRARY_VERSION=1.0.0-BETA15
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
# POM
POM_URL=https://github.com/powersync-ja/powersync-kotlin/
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.5.4"
ktor = "3.0.1"
uuid = "0.8.2"
powersync-core = "0.3.6"
powersync-core = "0.3.8"
sqlite-android = "3.45.0"
sqlite-jdbc = "3.45.2.0"

Expand Down
Loading