Skip to content

Commit b5404c2

Browse files
committed
Upgrade Kotlin and KSP
1 parent 5db8c86 commit b5404c2

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@
22

33
- Date format: YYYY-MM-dd
44

5-
## v1.1.1 / 2023-xx-xx
5+
## v1.1.1 / 2023-08-12
66

7-
### sqllin-dsl
7+
### All
88

9-
* *Breaking Change*: Remove the public API `DBEntity`([#36](https://github.com/ctripcorp/SQLlin/pull/36)), any data classes used in _sqllin-dsl_ don't need to extend `DBEntity` anymore.
9+
* Update `Kotlin`'s version to `1.9.0`
10+
11+
### sqllin-dsl
1012

13+
* Deprecated the public API `DBEntity`([#36](https://github.com/ctripcorp/SQLlin/pull/36), [#37](https://github.com/ctripcorp/SQLlin/pull/37)), any data classes used in _sqllin-dsl_ don't need to extend `DBEntity` anymore.
1114

1215
### sqllin-driver
1316

1417
* Fix a bug about empty `ByteArray` on native platforms([#30](https://github.com/ctripcorp/SQLlin/pull/30))
1518

19+
### sqllin-processor
20+
21+
* Update `KSP`'s version to `1.9.0-1.0.13`
22+
1623
## v1.1.0 / 2023-06-06
1724

1825
### All

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
VERSION=1.1.0
22
GROUP=com.ctrip.kotlin
33

4-
kotlinVersion=1.8.20
5-
kspVersion=1.8.20-1.0.11
4+
kotlinVersion=1.9.0
5+
kspVersion=1.9.0-1.0.13
66

77
#Maven Publish Information
88
githubURL=https://github.com/ctripcorp/SQLlin

sqllin-driver/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ kotlin {
5555
val commonTest by getting {
5656
dependencies {
5757
implementation(kotlin("test"))
58-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1")
58+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
5959
}
6060
}
6161
val androidMain by getting {

sqllin-processor/src/main/kotlin/com/ctrip/sqllin/processor/ClauseProcessor.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import com.google.devtools.ksp.symbol.*
2424
import java.io.OutputStreamWriter
2525

2626
/**
27-
* Generate the clause property for data class that present the database entity
27+
* Generate the clause properties for data classes that present the database entity
2828
* @author yaqiao
2929
*/
3030

0 commit comments

Comments
 (0)