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-BETA10

* Change Swift package name from `PowerSync` to `PowerSyncKotlin`

## 1.0.0-BETA9

* Re-enable SKIE `SuspendInterop`
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// swift-tools-version:5.3
import PackageDescription

let packageName = "PowerSync"
let packageName = "PowerSyncKotlin"

let package = Package(
name: packageName,
Expand All @@ -17,7 +17,7 @@ let package = Package(
targets: [
.binaryTarget(
name: packageName,
path: "./PowerSync/build/XCFrameworks/debug/PowerSync.xcframework"
path: "./PowerSyncKotlin/build/XCFrameworks/debug/PowerSyncKotlin.xcframework"
)
,
]
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import co.touchlab.faktory.artifactmanager.ArtifactManager
import co.touchlab.faktory.capitalized
import co.touchlab.skie.configuration.SuspendInterop
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import java.net.URL
import java.security.MessageDigest
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Pod::Spec.new do |spec|
spec.name = 'PowerSync'
spec.name = 'PowerSyncKotlin'
spec.version = '0.1'
spec.homepage = 'https://www.powersync.com'
spec.source = { :http=> ''}
spec.authors = 'JOURNEYAPPS'
spec.license = 'Apache-2.0'
spec.summary = 'PowerSync SDK for Swift'
spec.vendored_frameworks = 'build/cocoapods/framework/PowerSync.framework'
spec.vendored_frameworks = 'build/cocoapods/framework/PowerSyncKotlin.framework'

spec.ios.deployment_target = '13.5'


spec.pod_target_xcconfig = {
'KOTLIN_PROJECT_PATH' => ':PowerSync',
'PRODUCT_MODULE_NAME' => 'PowerSync',
'KOTLIN_PROJECT_PATH' => ':PowerSyncKotlin',
'PRODUCT_MODULE_NAME' => 'PowerSyncKotlin',
}

spec.script_phases = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import app.cash.sqldelight.async.coroutines.awaitAsList
import app.cash.sqldelight.async.coroutines.awaitAsOne
import app.cash.sqldelight.db.SqlCursor
import co.touchlab.kermit.Logger
import co.touchlab.skie.configuration.annotations.SuspendInterop
import com.powersync.DatabaseDriverFactory
import com.powersync.PowerSyncDatabase
import com.powersync.PsSqlDriver
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-BETA9
LIBRARY_VERSION=1.0.0-BETA10
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 settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ include(":connectors:supabase")

include(":dialect")
include(":persistence")
include(":PowerSync")
include(":PowerSyncKotlin")

include(":compose")

Expand Down
Loading