Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.16.0 #268

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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")
}
```

Expand Down Expand Up @@ -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")
}
```

Expand Down Expand Up @@ -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.
Expand Down
Loading