File tree Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 30
30
ALGOLIA_INDEX_NAME : ' prod_kotlin_rpc'
31
31
ALGOLIA_KEY : ' ${{ secrets.ALGOLIA_KEY }}'
32
32
CONFIG_JSON_PRODUCT : ' kotlinx-rpc'
33
- CONFIG_JSON_VERSION : ' 0.9.1 '
33
+ CONFIG_JSON_VERSION : ' 0.10.0 '
34
34
DOKKA_ARTIFACT : ' dokka.zip'
35
35
ASSEMBLE_DIR : ' __docs_assembled'
36
36
ASSEMBLE_ARTIFACT : ' assembled.zip'
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ Example of a setup in a project's `build.gradle.kts`:
136
136
plugins {
137
137
kotlin(" multiplatform" ) version " 2.2.20"
138
138
kotlin(" plugin.serialization" ) version " 2.2.20"
139
- id(" org.jetbrains.kotlinx.rpc.plugin" ) version " 0.9.1 "
139
+ id(" org.jetbrains.kotlinx.rpc.plugin" ) version " 0.10.0 "
140
140
}
141
141
```
142
142
@@ -151,15 +151,15 @@ And now you can add dependencies to your project:
151
151
``` kotlin
152
152
dependencies {
153
153
// Client API
154
- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.9.1 " )
154
+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.10.0 " )
155
155
// Server API
156
- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.9.1 " )
156
+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.10.0 " )
157
157
// Serialization module. Also, protobuf and cbor are provided
158
- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.9.1 " )
158
+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.10.0 " )
159
159
160
160
// Transport implementation for Ktor
161
- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.9.1 " )
162
- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.9.1 " )
161
+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.10.0 " )
162
+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.10.0 " )
163
163
164
164
// Ktor API
165
165
implementation(" io.ktor:ktor-client-cio-jvm:$ktor_version " )
Original file line number Diff line number Diff line change 1
1
[
2
- {"version" :" 0.9.1 " ,"url" :" /kotlinx-rpc/0.9.1 /" ,"isCurrent" :true }
2
+ {"version" :" 0.10.0 " ,"url" :" /kotlinx-rpc/0.10.0 /" ,"isCurrent" :true }
3
3
]
Original file line number Diff line number Diff line change 14
14
<var name =" host" value =" https://kotlin.github.io" />
15
15
16
16
<!-- Library versions -->
17
- <var name =" kotlinx-rpc-version" value =" 0.9.1 " />
17
+ <var name =" kotlinx-rpc-version" value =" 0.10.0 " />
18
18
<var name =" kotlin-version" value =" 2.2.20" />
19
19
</vars >
Original file line number Diff line number Diff line change 12
12
<images dir =" images" web-path =" images/" />
13
13
<categories src =" c.list" />
14
14
<vars src =" v.list" />
15
- <instance src =" rpc.tree" version =" 0.9.1 " web-path =" /kotlinx-rpc/" />
15
+ <instance src =" rpc.tree" version =" 0.10.0 " web-path =" /kotlinx-rpc/" />
16
16
</ihp>
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
# core library version
3
- kotlinx-rpc = " 0.10.0-SNAPSHOT "
3
+ kotlinx-rpc = " 0.10.0"
4
4
5
5
# kotlin
6
6
kotlin-lang = " 2.2.20" # or env.KOTLIN_VERSION
You can’t perform that action at this time.
0 commit comments