@@ -39,9 +39,7 @@ So it depends on `ktor` client/server engines for available transports and platf
39
39
40
40
## Using in your projects
41
41
42
- rsocket-kotlin is available on [ Maven Central] ( https://mvnrepository.com/artifact/io.rsocket.kotlin )
43
-
44
- Make sure, that you use Kotlin 1.6.20+, ktor 2.0.0+ and have ` mavenCentral() ` in the list of repositories:
42
+ rsocket-kotlin is available on [ Maven Central] ( https://mvnrepository.com/artifact/io.rsocket.kotlin ) :
45
43
46
44
``` kotlin
47
45
repositories {
@@ -59,10 +57,10 @@ Dependencies:
59
57
``` kotlin
60
58
dependencies {
61
59
// for client
62
- implementation(" io.rsocket.kotlin:rsocket-ktor-client:0.15.4 " )
60
+ implementation(" io.rsocket.kotlin:rsocket-ktor-client:0.16.0 " )
63
61
64
62
// for server
65
- implementation(" io.rsocket.kotlin:rsocket-ktor-server:0.15.4 " )
63
+ implementation(" io.rsocket.kotlin:rsocket-ktor-server:0.16.0 " )
66
64
}
67
65
```
68
66
@@ -183,19 +181,19 @@ Dependencies:
183
181
184
182
``` kotlin
185
183
dependencies {
186
- implementation(" io.rsocket.kotlin:rsocket-core:0.15.4 " )
184
+ implementation(" io.rsocket.kotlin:rsocket-core:0.16.0 " )
187
185
188
186
// TCP ktor client/server transport
189
- implementation(" io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.15.4 " )
187
+ implementation(" io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.16.0 " )
190
188
191
189
// WS ktor client transport
192
- implementation(" io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.15.4 " )
190
+ implementation(" io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.16.0 " )
193
191
194
192
// WS ktor server transport
195
- implementation(" io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.15.4 " )
193
+ implementation(" io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.16.0 " )
196
194
197
195
// TCP nodeJS client/server transport
198
- implementation(" io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.15.4 " )
196
+ implementation(" io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.16.0 " )
199
197
}
200
198
```
201
199
@@ -279,7 +277,7 @@ For bugs, questions and discussions please use the [Github Issues](https://githu
279
277
280
278
## LICENSE
281
279
282
- Copyright 2015-2022 the original author or authors.
280
+ Copyright 2015-2024 the original author or authors.
283
281
284
282
Licensed under the Apache License, Version 2.0 (the "License");
285
283
you may not use this file except in compliance with the License.
0 commit comments