Skip to content

Commit 9246009

Browse files
authored
Update README.md
1 parent 69840be commit 9246009

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Driver for the library [SQLDelight](https://github.com/cashapp/sqldelight) that
1010

1111
## Gradle set up
1212

13-
Pretty much it's almost the same as with https://cashapp.github.io/sqldelight/2.0.0-rc01/js_sqlite/
13+
Pretty much it's almost the same as with https://cashapp.github.io/sqldelight/2.0.0/js_sqlite/
1414

1515
Initialization of SQLDelight is needed
1616

1717
```kotlin
1818
plugins {
19-
kotlin("js") version "1.8.0" // probably would work even with different one
20-
id("app.cash.sqldelight") version "2.0.0-rc01" // for version 0.2.0
19+
kotlin("js") version "1.9.20" // probably would work even with different one
20+
id("app.cash.sqldelight") version "2.0.0" // for version 0.3.0
2121
}
2222
2323
@@ -40,7 +40,7 @@ kotlin {
4040
binaries.executable()
4141
nodejs {
4242
dependencies {
43-
implementation("cz.sazel.sqldelight:node-sqlite3-driver-js:0.2.0")
43+
implementation("cz.sazel.sqldelight:node-sqlite3-driver-js:0.3.0")
4444
}
4545
}
4646
}
@@ -70,7 +70,7 @@ tasks["kotlinNpmInstall"].finalizedBy(bindingsInstall)
7070

7171

7272

73-
Queries are written as here - https://cashapp.github.io/sqldelight/2.0.0-rc01/js_sqlite/
73+
Queries are written as here - https://cashapp.github.io/sqldelight/2.0.0/js_sqlite/
7474

7575

7676
```kotlin

0 commit comments

Comments
 (0)