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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.0-BETA2

* Publish persistence package

## 1.0.0-BETA1

* Improve API by changing from Builder pattern to simply instantiating the database `PowerSyncDatabase`
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-BETA1
LIBRARY_VERSION=1.0.0-BETA2
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
# POM
POM_URL=https://github.com/powersync-ja/powersync-kotlin/
Expand Down
4 changes: 4 additions & 0 deletions persistence/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import com.powersync.plugins.sonatype.setupGithubRepository

plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.sqldelight)
alias(libs.plugins.androidLibrary)
id("com.powersync.plugins.sonatype")
}

kotlin {
Expand Down Expand Up @@ -66,3 +69,4 @@ sqldelight {
}
}

setupGithubRepository()
3 changes: 3 additions & 0 deletions persistence/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=persistence
POM_NAME=SqlDelight Persistence
POM_DESCRIPTION=SqlDelight database setup used in the core package.
Loading