File tree 8 files changed +30
-16
lines changed
8 files changed +30
-16
lines changed Original file line number Diff line number Diff line change 2
2
3
3
- Date format: YYYY-MM-dd
4
4
5
+ ## v1.2.4 / 2024-01-05
6
+
7
+ ### All
8
+
9
+ * Update ` Kotlin ` 's version to ` 1.9.22 `
10
+
11
+ ### sqllin-dsl
12
+
13
+ * Update ` kotlinx.serialization ` 's version to ` 1.6.2 `
14
+
15
+ ### sqllin-processor
16
+
17
+ * Update ` KSP ` 's version to ` 1.9.22-1.0.16 `
18
+
5
19
## v1.2.3 / 2023-11-28
6
20
7
21
### All
@@ -77,7 +91,7 @@ a runtime exception. Thanks for [@nbransby](https://github.com/nbransby).
77
91
78
92
* Add the new JVM target
79
93
* ** Breaking change** : Remove the public property: ` DatabaseConnection#closed `
80
- * The Android (<= 9) target supports to set the ` journalMode ` and ` synchronousMode ` now
94
+ * The Android (< 9) target supports to set the ` journalMode ` and ` synchronousMode ` now
81
95
82
96
## v1.1.1 / 2023-08-12
83
97
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
dependencies {
8
8
val kotlinVersion: String by project
9
9
classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion " )
10
- classpath(" com.android.tools.build:gradle:8.1.4 " )
10
+ classpath(" com.android.tools.build:gradle:8.2.1 " )
11
11
}
12
12
}
13
13
Original file line number Diff line number Diff line change 1
- VERSION =1.2.3
1
+ VERSION =1.2.4
2
2
GROUP =com.ctrip.kotlin
3
3
4
- kotlinVersion =1.9.21
5
- kspVersion =1.9.21-1.0.15
4
+ kotlinVersion =1.9.22
5
+ kspVersion =1.9.22-1.0.16
6
+ serializationVersion =1.6.2
6
7
coroutinesVersion =1.7.3
8
+ androidxAnnotationVersion =1.7.1
7
9
8
10
# Maven Publish Information
9
11
githubURL =https://github.com/ctripcorp/SQLlin
Original file line number Diff line number Diff line change 1
1
# Tue Mar 08 15:11:46 CST 2022
2
2
distributionBase =GRADLE_USER_HOME
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.5 -bin.zip
4
4
distributionPath =wrapper/dists
5
5
zipStorePath =wrapper/dists
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ kotlin {
32
32
kotlin.srcDir(" build/generated/ksp/metadata/commonMain/kotlin" )
33
33
dependencies {
34
34
implementation(project(" :sqllin-dsl" ))
35
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-core:1.5.1" )
35
+ val serializationVersion: String by project
36
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-core:${serializationVersion} " )
36
37
val coroutinesVersion: String by project
37
38
implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion " )
38
39
}
Original file line number Diff line number Diff line change @@ -81,7 +81,8 @@ kotlin {
81
81
}
82
82
val androidMain by getting {
83
83
dependencies {
84
- implementation(" androidx.annotation:annotation:1.7.0" )
84
+ val androidxAnnotationVersion: String by project
85
+ implementation(" androidx.annotation:annotation:${androidxAnnotationVersion} " )
85
86
}
86
87
}
87
88
val androidInstrumentedTest by getting {
@@ -94,7 +95,7 @@ kotlin {
94
95
95
96
val jvmMain by getting {
96
97
dependencies {
97
- implementation(" org.xerial:sqlite-jdbc:3.43.0 .0" )
98
+ implementation(" org.xerial:sqlite-jdbc:3.44.1 .0" )
98
99
}
99
100
}
100
101
}
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ kotlin {
77
77
val commonMain by getting {
78
78
dependencies {
79
79
api(project(" :sqllin-driver" ))
80
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-core:1.5.1" )
80
+ val serializationVersion: String by project
81
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-core:${serializationVersion} " )
81
82
val coroutinesVersion: String by project
82
83
implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion " )
83
84
}
@@ -87,11 +88,6 @@ kotlin {
87
88
implementation(kotlin(" test" ))
88
89
}
89
90
}
90
- val androidMain by getting {
91
- dependencies {
92
- implementation(" androidx.annotation:annotation:1.7.0" )
93
- }
94
- }
95
91
val androidInstrumentedTest by getting {
96
92
dependencies {
97
93
implementation(" androidx.test:core:1.5.0" )
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ publishing {
41
41
artifactId = " sqllin-processor"
42
42
setArtifacts(
43
43
listOf (
44
- " $buildDir /libs/sqllin-processor-$version .jar" ,
44
+ " ${layout.buildDirectory} /libs/sqllin-processor-$version .jar" ,
45
45
javadocJar, sourceJar,
46
46
)
47
47
)
You can’t perform that action at this time.
0 commit comments