Skip to content

Commit 023b18f

Browse files
committed
Version 0.5.13
1 parent ea89605 commit 023b18f

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

SQLiter/build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
apply plugin: 'org.jetbrains.kotlin.multiplatform'
1414

1515
repositories {
16-
mavenLocal()
16+
// mavenLocal()
1717
mavenCentral()
1818
maven {
1919
url 'https://oss.sonatype.org/content/repositories/snapshots/'
@@ -43,18 +43,27 @@ kotlin {
4343
compilations.each {
4444
it.extraOpts("-linker-options", "-lsqlite3")
4545
}
46+
compilations.test {
47+
it.extraOpts("-native-library", "../KotlinCpp/bcdist/ios_x64/tlruntime.bc")
48+
}
4649
}
4750

4851
fromPreset(presets.iosArm64, 'iosArm64'){
4952
compilations.each {
5053
it.extraOpts("-linker-options", "-lsqlite3")
5154
}
55+
compilations.test {
56+
it.extraOpts("-native-library", "../KotlinCpp/bcdist/ios_arm64/tlruntime.bc")
57+
}
5258
}
5359

5460
fromPreset(presets.iosArm32, 'iosArm32'){
5561
compilations.each {
5662
it.extraOpts("-linker-options", "-lsqlite3")
5763
}
64+
compilations.test {
65+
it.extraOpts("-native-library", "../KotlinCpp/bcdist/ios_arm32/tlruntime.bc")
66+
}
5867
}
5968

6069
}

SQLiter/gradle.properties

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
kotlin.code.style=official
1818

1919
GROUP=co.touchlab
20-
VERSION_NAME=0.5.10
20+
VERSION_NAME=0.5.13
2121

22-
STATELY_VERSION=0.5.1
23-
KOTLIN_VERSION=1.3.11
22+
STATELY_VERSION=0.6.0
23+
KOTLIN_VERSION=1.3.21
2424
DOKKA_VERSION=0.9.17
2525

2626
POM_URL=https://github.com/touchlab/SQLiter
@@ -40,7 +40,5 @@ POM_DEVELOPER_NAME=Kevin Galligan
4040
POM_DEVELOPER_ORG=Kevin Galligan
4141
POM_DEVELOPER_URL=https://touchlab.co/
4242

43-
BINTRAY_VERSION=1.8.3-kotlin-a1
44-
4543
org.gradle.internal.http.socketTimeout=120000
4644
org.gradle.internal.http.connectionTimeout=120000

SQLiter/src/nativeCommonTest/kotlin/co/touchlab/sqliter/Helper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ inline fun basicTestDb(createSql:String = FOUR_COL, block:(DatabaseManager)->Uni
6666
fun <T> Collection<Future<T>>.waitForAllFutures() {
6767
var consumed = 0
6868
while (consumed < this.size) {
69-
val ready = this.waitForMultipleFutures(10000)
69+
val ready = waitForMultipleFutures(this, 10000)
7070
ready.forEach {
7171
it.consume { result ->
7272
consumed++

0 commit comments

Comments
 (0)