Skip to content

Commit 43c9b00

Browse files
committed
Kotlin 2.2.20
1 parent c690e55 commit 43c9b00

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

1313
[//]: # ([![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))
@@ -102,7 +102,7 @@ To ensure that all IDE features of our compiler plugin work properly on IntelliJ
102102
We support all stable Kotlin versions starting from 2.0.0:
103103
- 2.0.0, 2.0.10, 2.0.20, 2.0.21
104104
- 2.1.0, 2.1.10, 2.1.20, 2.1.21
105-
- 2.2.0, 2.2.10
105+
- 2.2.0, 2.2.10, 2.2.20
106106

107107
For a full compatibility checklist,
108108
see [Versions](https://kotlin.github.io/kotlinx-rpc/versions.html).
@@ -134,8 +134,8 @@ that will set up code generation in a project.
134134
Example of a setup in a project's `build.gradle.kts`:
135135
```kotlin
136136
plugins {
137-
kotlin("multiplatform") version "2.2.10"
138-
kotlin("plugin.serialization") version "2.2.10"
137+
kotlin("multiplatform") version "2.2.20"
138+
kotlin("plugin.serialization") version "2.2.20"
139139
id("org.jetbrains.kotlinx.rpc.plugin") version "0.9.1"
140140
}
141141
```

docs/pages/kotlinx-rpc/topics/versions.topic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<list>
2525
<li>2.0.0, 2.0.10, 2.0.20, 2.0.21</li>
2626
<li>2.1.0, 2.1.10, 2.1.20, 2.1.21</li>
27-
<li>2.2.0, 2.2.10</li>
27+
<li>2.2.0, 2.2.10, 2.2.20</li>
2828
</list>
2929
<p>
3030
Our code generation will support these versions (See more on <a anchor="code-generation-artifacts">code

docs/pages/kotlinx-rpc/v.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515

1616
<!-- Library versions -->
1717
<var name="kotlinx-rpc-version" value="0.9.1"/>
18-
<var name="kotlin-version" value="2.2.10"/>
18+
<var name="kotlin-version" value="2.2.20"/>
1919
</vars>

krpc/krpc-test/src/commonMain/kotlin/kotlinx/rpc/krpc/test/KrpcTransportTestBase.kt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,6 @@ abstract class KrpcTransportTestBase {
152152
assertEquals("name".reversed(), client.simpleWithParams("name"))
153153
}
154154

155-
@Test
156-
@Ignore // works on my machine issue – timeouts on TC
157-
fun simpleWithParams100000() = runTest {
158-
repeat(100000) {
159-
assertEquals("name".reversed(), client.simpleWithParams("name"))
160-
}
161-
}
162-
163155
@Test
164156
fun genericReturnType() = runTest {
165157
assertEquals(listOf("hello", "world"), client.genericReturnType())

versions-root/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
kotlinx-rpc = "0.10.0-SNAPSHOT"
44

55
# kotlin
6-
kotlin-lang = "2.2.10" # or env.KOTLIN_VERSION
6+
kotlin-lang = "2.2.20" # or env.KOTLIN_VERSION
77
kotlin-compiler = "0.0.0" # default to kotlin-lang or env.KOTLIN_COMPILER_VERSION
88

99
# kotlin independent versions

0 commit comments

Comments
 (0)