From 3a62b4e70a7169e605acc3335e76ea317a743d67 Mon Sep 17 00:00:00 2001 From: Oleg Yukhnevich Date: Wed, 22 May 2024 10:02:01 +0300 Subject: [PATCH] update version to 0.16.0 in README.md (#268) --- README.md | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e85d1753..897e5f54 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,7 @@ So it depends on `ktor` client/server engines for available transports and platf ## Using in your projects -rsocket-kotlin is available on [Maven Central](https://mvnrepository.com/artifact/io.rsocket.kotlin) - -Make sure, that you use Kotlin 1.6.20+, ktor 2.0.0+ and have `mavenCentral()` in the list of repositories: +rsocket-kotlin is available on [Maven Central](https://mvnrepository.com/artifact/io.rsocket.kotlin): ```kotlin repositories { @@ -59,10 +57,10 @@ Dependencies: ```kotlin dependencies { //for client - implementation("io.rsocket.kotlin:rsocket-ktor-client:0.15.4") + implementation("io.rsocket.kotlin:rsocket-ktor-client:0.16.0") //for server - implementation("io.rsocket.kotlin:rsocket-ktor-server:0.15.4") + implementation("io.rsocket.kotlin:rsocket-ktor-server:0.16.0") } ``` @@ -183,19 +181,19 @@ Dependencies: ```kotlin dependencies { - implementation("io.rsocket.kotlin:rsocket-core:0.15.4") + implementation("io.rsocket.kotlin:rsocket-core:0.16.0") // TCP ktor client/server transport - implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.15.4") + implementation("io.rsocket.kotlin:rsocket-transport-ktor-tcp:0.16.0") // WS ktor client transport - implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.15.4") + implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-client:0.16.0") // WS ktor server transport - implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.15.4") + implementation("io.rsocket.kotlin:rsocket-transport-ktor-websocket-server:0.16.0") // TCP nodeJS client/server transport - implementation("io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.15.4") + implementation("io.rsocket.kotlin:rsocket-transport-nodejs-tcp:0.16.0") } ``` @@ -279,7 +277,7 @@ For bugs, questions and discussions please use the [Github Issues](https://githu ## LICENSE -Copyright 2015-2022 the original author or authors. +Copyright 2015-2024 the original author or authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.