Skip to content

Commit 3a62b4e

Browse files
authored
update version to 0.16.0 in README.md (#268)
1 parent 16b82d0 commit 3a62b4e

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ So it depends on `ktor` client/server engines for available transports and platf
3939

4040
## Using in your projects
4141

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):
4543

4644
```kotlin
4745
repositories {
@@ -59,10 +57,10 @@ Dependencies:
5957
```kotlin
6058
dependencies {
6159
//for client
62-
implementation("io.rsocket.kotlin:rsocket-ktor-client:0.15.4")
60+
implementation("io.rsocket.kotlin:rsocket-ktor-client:0.16.0")
6361

6462
//for server
65-
implementation("io.rsocket.kotlin:rsocket-ktor-server:0.15.4")
63+
implementation("io.rsocket.kotlin:rsocket-ktor-server:0.16.0")
6664
}
6765
```
6866

@@ -183,19 +181,19 @@ Dependencies:
183181

184182
```kotlin
185183
dependencies {
186-
implementation("io.rsocket.kotlin:rsocket-core:0.15.4")
184+
implementation("io.rsocket.kotlin:rsocket-core:0.16.0")
187185

188186
// 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")
190188

191189
// 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")
193191

194192
// 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")
196194

197195
// 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")
199197
}
200198
```
201199

@@ -279,7 +277,7 @@ For bugs, questions and discussions please use the [Github Issues](https://githu
279277

280278
## LICENSE
281279

282-
Copyright 2015-2022 the original author or authors.
280+
Copyright 2015-2024 the original author or authors.
283281

284282
Licensed under the Apache License, Version 2.0 (the "License");
285283
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)