Skip to content

Commit c988a55

Browse files
committed
Update version to 1.3.1
1 parent 2b55a00 commit c988a55

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=1.3.0
1+
VERSION=1.3.1
22
GROUP=com.ctrip.kotlin
33

44
kotlinVersion=1.9.23

sqllin-driver/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ databaseConnection.executeUpdateDelete(SQL.UPDATE, arrayOf(20, "Tom"))
102102

103103
// SELECT
104104
val cursor: CommonCursor = databaseConnection.query(SQL.QUERY, arrayOf(20, "Tom"))
105-
cursor.forEachRows { index -> // Index of rows
105+
cursor.forEachRow { index -> // Index of rows
106106
val age: Int = cursor.getInt("age")
107107
val name: String = cursor.getString("name")
108108
}

sqllin-driver/README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ databaseConnection.executeUpdateDelete(SQL.UPDATE, arrayOf(20, "Tom"))
9191

9292
// SELECT
9393
val cursor: CommonCursor = databaseConnection.query(SQL.QUERY, arrayOf(20, "Tom"))
94-
cursor.forEachRows { index -> // Index of rows
94+
cursor.forEachRow { index -> // Index of rows
9595
val age: Int = cursor.getInt("age")
9696
val name: String = cursor.getString("name")
9797
}

sqllin-dsl/doc/getting-start-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
id("com.google.devtools.ksp")
1515
}
1616

17-
val sqllinVersion = "1.3.0"
17+
val sqllinVersion = "1.3.1"
1818

1919
kotlin {
2020
// ......

sqllin-dsl/doc/getting-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
id("com.google.devtools.ksp")
1717
}
1818

19-
val sqllinVersion = "1.3.0"
19+
val sqllinVersion = "1.3.1"
2020

2121
kotlin {
2222
// ......

0 commit comments

Comments
 (0)