Skip to content

Commit 7fd5285

Browse files
update kotlin sdk
1 parent 5ad57a0 commit 7fd5285

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
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

Package.swift

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
5+
56
let 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
)

0 commit comments

Comments
 (0)