Skip to content

Commit 7dad191

Browse files
committed
Kotlin 2.2.21
1 parent 1a45aba commit 7dad191

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# 0.10.1
2-
> Published 24 October 2025
2+
> Published 27 October 2025
33
44
### Features 🎉
5+
* Kotlin 2.2.21 Support by @Mr3zee in https://github.com/Kotlin/kotlinx-rpc/pull/519
56
* Expose RpcServiceDescriptor.callables by @rnett in https://github.com/Kotlin/kotlinx-rpc/pull/516
67
* Added watchosDeviceArm64 and watchosArm32 targets to kRPC by @Mr3zee in https://github.com/Kotlin/kotlinx-rpc/pull/513
78

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.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
10+
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0--2.2.21-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, 2.2.20
105+
- 2.2.0, 2.2.10, 2.2.20, 2.2.21
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.20"
138-
kotlin("plugin.serialization") version "2.2.20"
137+
kotlin("multiplatform") version "2.2.21"
138+
kotlin("plugin.serialization") version "2.2.21"
139139
id("org.jetbrains.kotlinx.rpc.plugin") version "0.10.1"
140140
}
141141
```

docs/pages/kotlinx-rpc/topics/changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
This page contains all changes throughout releases of the library.
44

55
## 0.10.1
6-
> Published 24 October 2025
6+
> Published 27 October 2025
77
88
**Full Changelog**: [0.10.0...0.10.1](https://github.com/Kotlin/kotlinx-rpc/compare/0.10.0...0.10.1)
99

1010
#### Features 🎉 {id=Features_0_10_1}
11+
* Kotlin 2.2.21 Support by [@Mr3zee](https://github.com/Mr3zee) in [#519](https://github.com/Kotlin/kotlinx-rpc/pull/519)
1112
* Expose RpcServiceDescriptor.callables by [@rnett](https://github.com/rnett) in [#516](https://github.com/Kotlin/kotlinx-rpc/pull/516)
1213
* Added watchosDeviceArm64 and watchosArm32 targets to kRPC by [@Mr3zee](https://github.com/Mr3zee) in [#513](https://github.com/Kotlin/kotlinx-rpc/pull/513)
1314

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, 2.2.20</li>
27+
<li>2.2.0, 2.2.10, 2.2.20, 2.2.21</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.10.1"/>
18-
<var name="kotlin-version" value="2.2.20"/>
18+
<var name="kotlin-version" value="2.2.21"/>
1919
</vars>

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.1"
44

55
# kotlin
6-
kotlin-lang = "2.2.20" # or env.KOTLIN_VERSION
6+
kotlin-lang = "2.2.21" # 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)