Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 1.3.1 #85

Merged
merged 5 commits into from
Apr 24, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Update version to 1.3.1
  • Loading branch information
qiaoyuang committed Apr 24, 2024
commit c988a557a8bf3f860c2bf054b8aacc5bf0f2aac9
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.3.0
VERSION=1.3.1
GROUP=com.ctrip.kotlin

kotlinVersion=1.9.23
2 changes: 1 addition & 1 deletion sqllin-driver/README.md
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ databaseConnection.executeUpdateDelete(SQL.UPDATE, arrayOf(20, "Tom"))

// SELECT
val cursor: CommonCursor = databaseConnection.query(SQL.QUERY, arrayOf(20, "Tom"))
cursor.forEachRows { index -> // Index of rows
cursor.forEachRow { index -> // Index of rows
val age: Int = cursor.getInt("age")
val name: String = cursor.getString("name")
}
2 changes: 1 addition & 1 deletion sqllin-driver/README_CN.md
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ databaseConnection.executeUpdateDelete(SQL.UPDATE, arrayOf(20, "Tom"))

// SELECT
val cursor: CommonCursor = databaseConnection.query(SQL.QUERY, arrayOf(20, "Tom"))
cursor.forEachRows { index -> // Index of rows
cursor.forEachRow { index -> // Index of rows
val age: Int = cursor.getInt("age")
val name: String = cursor.getString("name")
}
2 changes: 1 addition & 1 deletion sqllin-dsl/doc/getting-start-cn.md
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ plugins {
id("com.google.devtools.ksp")
}

val sqllinVersion = "1.3.0"
val sqllinVersion = "1.3.1"

kotlin {
// ......
2 changes: 1 addition & 1 deletion sqllin-dsl/doc/getting-start.md
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ plugins {
id("com.google.devtools.ksp")
}

val sqllinVersion = "1.3.0"
val sqllinVersion = "1.3.1"

kotlin {
// ......
Loading