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
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,26 @@

- Date format: YYYY-MM-dd

## 2.3.0 / 2026-05-xx
## 2.3.0 / 2026-08-20

### All

* Update `Kotlin`'s version to `2.3.21`
* Update `AGP`'s version to `9.2.1`, migrated from `com.android.library` plugin to `com.android.kotlin.multiplatform.library`
* Update `Kotlin`'s version to `2.4.10`
* Update `AGP`'s version to `9.3.1`, migrated from `com.android.library` plugin to `com.android.kotlin.multiplatform.library`
* Update `kotlinx.serialization`'s version to `1.11.0`
* Update `kotlinx.coroutines`'s version to `1.11.0`
* Fix documentation: Android minimum supported version has been `7.0+` (API 24) since `2.0.0`, the README incorrectly stated `6.0+`
* **Breaking change**: Drop `iosX64`, `macosX64`, `watchosX64`, and `tvosX64` target support

### sqllin-dsl

### sqllin-driver

* Update `sqlite-jdbc`'s version to `3.53.1.0`
* Update `sqlite-jdbc`'s version to `3.53.2.1`

### sqllin-processor

* Update `KSP`'s version to `2.3.7`
* Update `KSP`'s version to `2.3.11`

## 2.2.0 / 2025-12-15

Expand Down
5 changes: 1 addition & 4 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# SQLlin Roadmap

## High Priority

* Support INSERT OR REPLACE

## Medium Priority

* Support WASM platform DSL
Expand All @@ -20,5 +16,6 @@

## Supported

* Support INSERT OR REPLACE (2.3.0 ✅)
* Support FOREIGN KEY DSL (2.2.0 ✅)
* Support CREATE INDEX DSL (2.2.0 ✅)
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ org.gradle.jvmargs=-Xmx8g -XX:MaxMetaspaceSize=16g -XX:+HeapDumpOnOutOfMemoryErr
org.gradle.workers.max=16
org.gradle.parallel=true
org.gradle.caching=true
# Enabled parallel sync for Gradle 9.4+
org.gradle.tooling.parallel=true

#Android
android.useAndroidX=true
Expand All @@ -31,4 +33,4 @@ kotlin.native.ignoreDisabledTargets=true
kotlin.jvm.target.validation.mode=warning
kotlin.native.binary.pagedAllocator=false
kotlin.native.binary.latin1Strings=true
#kotlin.compiler.execution.strategy=out-of-process
#kotlin.compiler.execution.strategy=out-of-process
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[versions]

kotlin = "2.3.21"
agp = "9.2.1"
ksp = "2.3.7"
kotlin = "2.4.10"
agp = "9.3.1"
ksp = "2.3.11"
serialization = "1.11.0"
coroutines = "1.11.0"
androidx-annotation = "1.10.0"
androidx-test = "1.7.0"
androidx-test-runner = "1.7.0"
sqlite-jdbc = "3.53.1.0"
sqlite-jdbc = "3.53.2.1"
jvm-toolchain = "21"
android-sdk-compile = "37"
android-sdk-min = "24"
vanniktech-maven-publish = "0.36.0"
vanniktech-maven-publish = "0.37.0"

[libraries]

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Mar 08 15:11:46 CST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
10 changes: 4 additions & 6 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ kotlin {
iosSimulatorArm64()

compilerOptions {
freeCompilerArgs.addAll("-Xexpect-actual-classes", "-Xcontext-parameters")
freeCompilerArgs.addAll("-Xexpect-actual-classes")
}

sourceSets {
Expand All @@ -48,9 +48,7 @@ dependencies {

afterEvaluate { // WORKAROUND: both register() and named() fail – https://github.com/gradle/gradle/issues/9331
tasks {
withType<KotlinCompilationTask<*>> {
if (name != "kspCommonMainKotlinMetadata")
dependsOn("kspCommonMainKotlinMetadata")
}
matching { (it is KotlinCompilationTask<*> || it.name.startsWith("ksp")) && it.name != "kspCommonMainKotlinMetadata" }
.configureEach { dependsOn("kspCommonMainKotlinMetadata") }
}
}
}
2 changes: 1 addition & 1 deletion sqllin-driver-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kotlin {
}

compilerOptions {
freeCompilerArgs.addAll("-Xexpect-actual-classes", "-Xcontext-parameters")
freeCompilerArgs.addAll("-Xexpect-actual-classes")
}

sourceSets {
Expand Down
1 change: 0 additions & 1 deletion sqllin-driver-test/build/konan.txt

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion sqllin-driver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ kotlin {
}

compilerOptions {
freeCompilerArgs.addAll("-Xexpect-actual-classes", "-Xcontext-parameters")
freeCompilerArgs.addAll("-Xexpect-actual-classes")
}

sourceSets {
Expand Down
10 changes: 4 additions & 6 deletions sqllin-dsl-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ kotlin {
}

compilerOptions {
freeCompilerArgs.addAll("-Xexpect-actual-classes", "-Xcontext-parameters")
freeCompilerArgs.addAll("-Xexpect-actual-classes")
}

sourceSets {
Expand Down Expand Up @@ -109,9 +109,7 @@ dependencies {

afterEvaluate { // WORKAROUND: both register() and named() fail – https://github.com/gradle/gradle/issues/9331
tasks {
withType<KotlinCompilationTask<*>> {
if (name != "kspCommonMainKotlinMetadata")
dependsOn("kspCommonMainKotlinMetadata")
}
matching { (it is KotlinCompilationTask<*> || it.name.startsWith("ksp")) && it.name != "kspCommonMainKotlinMetadata" }
.configureEach { dependsOn("kspCommonMainKotlinMetadata") }
}
}
}
2 changes: 1 addition & 1 deletion sqllin-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kotlin {
mingwX64()

compilerOptions {
freeCompilerArgs.addAll("-Xexpect-actual-classes", "-Xcontext-parameters")
freeCompilerArgs.addAll("-Xexpect-actual-classes")
}

sourceSets {
Expand Down
Loading