File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ * Fix null values in CRUD entries being reported as strings.
56* [ Internal] Instantiate Kotlin Kermit logger directly.
7+ * [ Internal] Improved connection context error handling.
68
79## 1.4.0
810
Original file line number Diff line number Diff line change 22// The swift-tools-version declares the minimum version of Swift required to build this package.
33
44import PackageDescription
5+
56let packageName = " PowerSync "
67
78// Set this to the absolute path of your Kotlin SDK checkout if you want to use a local Kotlin
@@ -31,8 +32,8 @@ if let kotlinSdkPath = localKotlinSdkOverride {
3132 // Not using a local build, so download from releases
3233 conditionalTargets. append ( . binaryTarget(
3334 name: " PowerSyncKotlin " ,
34- url: " https://github.com/powersync-ja/powersync-kotlin/releases/download/v1.4 .0/PowersyncKotlinRelease.zip " ,
35- checksum: " e800db216fc1c9722e66873deb4f925530267db6dbd5e2114dd845cc62c28cd9 "
35+ url: " https://github.com/powersync-ja/powersync-kotlin/releases/download/v1.5 .0/PowersyncKotlinRelease.zip " ,
36+ checksum: " cb1d717d28411aff0bfdeeaa837ae01514ebf5d64203dc565a9520a2912bae9d "
3637 ) )
3738}
3839
@@ -59,7 +60,8 @@ let package = Package(
5960 // Products define the executables and libraries a package produces, making them visible to other packages.
6061 . library(
6162 name: packageName,
62- targets: [ " PowerSync " ] ) ,
63+ targets: [ " PowerSync " ]
64+ )
6365 ] ,
6466 dependencies: conditionalDependencies,
6567 targets: [
@@ -70,10 +72,11 @@ let package = Package(
7072 dependencies: [
7173 kotlinTargetDependency,
7274 . product( name: " PowerSyncSQLiteCore " , package : corePackageName)
73- ] ) ,
75+ ]
76+ ) ,
7477 . testTarget(
7578 name: " PowerSyncTests " ,
7679 dependencies: [ " PowerSync " ]
77- ) ,
80+ )
7881 ] + conditionalTargets
7982)
You can’t perform that action at this time.
0 commit comments