Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[![Kotlin Experimental](https://kotl.in/badges/experimental.svg)](https://kotlinlang.org/docs/components-stability.html)
[![Official JetBrains project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0--2.1.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0--2.1.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)

[//]: # ([![TeamCity build](https://img.shields.io/teamcity/build/s/Build_kRPC_All.svg?server=http%3A%2F%2Fkrpc.teamcity.com)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=Build_kRPC_All&guest=1))
Expand Down Expand Up @@ -114,8 +114,8 @@ that will set up code generation in a project.
Example of a setup in a project's `build.gradle.kts`:
```kotlin
plugins {
kotlin("multiplatform") version "2.1.20"
kotlin("plugin.serialization") version "2.1.20"
kotlin("multiplatform") version "2.1.21"
kotlin("plugin.serialization") version "2.1.21"
id("org.jetbrains.kotlinx.rpc.plugin") version "0.6.2"
}
```
Expand Down Expand Up @@ -177,7 +177,7 @@ For a working example, see the [sample gRPC project](/samples/grpc-app).
## Kotlin compatibility
We support all stable Kotlin versions starting from 2.0.0:
- 2.0.0, 2.0.10, 2.0.20, 2.0.21
- 2.1.0, 2.1.10, 2.1.20
- 2.1.0, 2.1.10, 2.1.20, 2.1.21

For a full compatibility checklist,
see [Versions](https://kotlin.github.io/kotlinx-rpc/versions.html).
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/kotlinx-rpc/topics/versions.topic
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</p>
<list>
<li>2.0.0, 2.0.10, 2.0.20, 2.0.21</li>
<li>2.1.0, 2.1.10, 2.1.20</li>
<li>2.1.0, 2.1.10, 2.1.20, 2.1.21</li>
</list>
<p>
Our code generation will support these versions (See more on <a anchor="code-generation-artifacts">code generation artifacts</a>).
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/kotlinx-rpc/v.list
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@

<!-- Library versions -->
<var name="kotlinx-rpc-version" value="0.6.2"/>
<var name="kotlin-version" value="2.1.20"/>
<var name="kotlin-version" value="2.1.21"/>
</vars>
1 change: 1 addition & 0 deletions versions-root/kotlin-versions-lookup.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Kotlin,atomicfu,serialization,detekt-gradle-plugin,gradle-kotlin-dsl,binary-compatibility-validator,kover
2.1.21,0.27.0,1.8.1,1.23.8,5.1.2,0.17.0,0.9.1
2.1.20,0.27.0,1.8.1,1.23.8,5.1.2,0.17.0,0.9.1
2.1.10,0.27.0,1.8.1,1.23.8,5.1.2,0.17.0,0.9.1
2.1.0,0.27.0,1.8.1,1.23.8,5.1.2,0.17.0,0.9.1
Expand Down
2 changes: 1 addition & 1 deletion versions-root/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
kotlinx-rpc = "0.7.0-SNAPSHOT"

# kotlin
kotlin-lang = "2.1.20" # or env.KOTLIN_VERSION
kotlin-lang = "2.1.21" # or env.KOTLIN_VERSION
kotlin-compiler = "0.0.0" # default to kotlin-lang or env.KOTLIN_COMPILER_VERSION

# kotlin independent versions
Expand Down