Skip to content

Commit c8dc4f7

Browse files
authored
Update README after release 0.14.0
1 parent 573ca44 commit c8dc4f7

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RSocket interface contains 5 methods:
4444

4545
## Using in your projects
4646

47-
Make sure, that you use Kotlin 1.5.20
47+
Make sure, that you use Kotlin 1.6.10
4848

4949
### Gradle:
5050

@@ -71,15 +71,15 @@ For WS ktor transport, available client or server engine should be added:
7171
```kotlin
7272
dependencies {
7373
// client engines for WS transport
74-
implementation("io.ktor:ktor-client-js:1.6.2") //js
75-
implementation("io.ktor:ktor-client-cio:1.6.2") //jvm
76-
implementation("io.ktor:ktor-client-okhttp:1.6.2") //jvm
74+
implementation("io.ktor:ktor-client-js:1.6.7") //js
75+
implementation("io.ktor:ktor-client-cio:1.6.7") //jvm
76+
implementation("io.ktor:ktor-client-okhttp:1.6.7") //jvm
7777

7878
// server engines for WS transport (jvm only)
79-
implementation("io.ktor:ktor-server-cio:1.6.2")
80-
implementation("io.ktor:ktor-server-netty:1.6.2")
81-
implementation("io.ktor:ktor-server-jetty:1.6.2")
82-
implementation("io.ktor:ktor-server-tomcat:1.6.2")
79+
implementation("io.ktor:ktor-server-cio:1.6.7")
80+
implementation("io.ktor:ktor-server-netty:1.6.7")
81+
implementation("io.ktor:ktor-server-jetty:1.6.7")
82+
implementation("io.ktor:ktor-server-tomcat:1.6.7")
8383
}
8484
```
8585

@@ -176,7 +176,6 @@ embeddedServer(CIO) {
176176

177177
### More examples:
178178

179-
- [interactions](examples/interactions) - contains usages of some supported functions
180179
- [multiplatform-chat](examples/multiplatform-chat) - chat implementation with JVM server and JS/JVM client with shared classes and
181180
serializing data using [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization)
182181
- [nodejs-tcp-transport](examples/nodejs-tcp-transport) - implementation of TCP transport for nodejs

0 commit comments

Comments
 (0)