Skip to content

Commit

Permalink
Update version to '1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaoyuang committed Dec 29, 2022
1 parent 883a45a commit 640c939
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# SQLlin Change Log

## v1.0.0/12-29-2022

* Add the `ON` clause support
* Update KSP version to `1.7.20-1.0.8`
* Fix some bugs about `JOIN` clause
* Fix some bugs about unit tests

## v1.0-alpha01/11-29-2022

### Initial Release
* Based on `Kotlin 1.7.20`
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ SQLlin supports these platforms:
- watchOS (x86, x64, arm32, arm64, simulatorArm64)
- tvOS (x64, arm64, simulatorArm64)
- Linux (x64)
- Windows (mingwX86, mingwX64)


The structure design of SQLlin is shown in the figure:
Expand Down
1 change: 1 addition & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ SQLlin 支持如下平台:
- watchOS (x86, x64, arm32, arm64, simulatorArm64)
- tvOS (x64, arm64, simulatorArm64)
- Linux (x64)
- Windows (mingwX86, mingwX64)

SQLlin 的架构设计如下图所示:

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.0-alpha01
VERSION=1.0.0
GROUP=com.ctrip.kotlin

kspVersion=1.7.20-1.0.8
Expand Down
2 changes: 1 addition & 1 deletion sqllin-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ supports iOS, it also supports all the operating systems of Apple, Linux(x64) an

## Basic usage

I am not advice you use _sqllin-driver_ in your applications directly, but if you want to develop your own SQLite
I am not advice you use _sqllin-driver_ in your application projects directly, but if you want to develop your own SQLite
higher-level API library, you can use it.

### Installation via Maven in Gradle
Expand Down
2 changes: 1 addition & 1 deletion sqllin-dsl/doc/getting-start-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
id("com.google.devtools.ksp")
}

val sqllinVersion = "1.0-alpha01"
val sqllinVersion = "1.0.0"

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

val sqllinVersion = "1.0-alpha01"
val sqllinVersion = "1.0.0"

kotlin {
// ......
Expand Down

0 comments on commit 640c939

Please sign in to comment.