File tree Expand file tree Collapse file tree 10 files changed +20
-20
lines changed
ktor-all-platforms-app/gradle Expand file tree Collapse file tree 10 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 2020 ALGOLIA_INDEX_NAME : ' prod_kotlin_rpc'
2121 ALGOLIA_KEY : ' ${{ secrets.ALGOLIA_KEY }}'
2222 CONFIG_JSON_PRODUCT : ' kotlinx-rpc'
23- CONFIG_JSON_VERSION : ' 0.5.0 '
23+ CONFIG_JSON_VERSION : ' 0.5.1 '
2424
2525jobs :
2626 build :
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ Example of a setup in a project's `build.gradle.kts`:
116116plugins {
117117 kotlin(" multiplatform" ) version " 2.1.10"
118118 kotlin(" plugin.serialization" ) version " 2.1.10"
119- id(" org.jetbrains.kotlinx.rpc.plugin" ) version " 0.5.0 "
119+ id(" org.jetbrains.kotlinx.rpc.plugin" ) version " 0.5.1 "
120120}
121121```
122122
@@ -131,15 +131,15 @@ And now you can add dependencies to your project:
131131``` kotlin
132132dependencies {
133133 // Client API
134- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.5.0 " )
134+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.5.1 " )
135135 // Server API
136- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.5.0 " )
136+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.5.1 " )
137137 // Serialization module. Also, protobuf and cbor are provided
138- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.5.0 " )
138+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.5.1 " )
139139
140140 // Transport implementation for Ktor
141- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.5.0 " )
142- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.5.0 " )
141+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.5.1 " )
142+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.5.1 " )
143143
144144 // Ktor API
145145 implementation(" io.ktor:ktor-client-cio-jvm:$ktor_version " )
Original file line number Diff line number Diff line change 11[
2- {"version" :" 0.5.0 " ,"url" :" /kotlinx-rpc/0.5.0 /" ,"isCurrent" :true }
2+ {"version" :" 0.5.1 " ,"url" :" /kotlinx-rpc/0.5.1 /" ,"isCurrent" :true }
33]
Original file line number Diff line number Diff line change 1414 <var name =" host" value =" https://kotlin.github.io" />
1515
1616 <!-- Library versions -->
17- <var name =" kotlinx-rpc-version" value =" 0.5.0 " />
17+ <var name =" kotlinx-rpc-version" value =" 0.5.1 " />
1818 <var name =" kotlin-version" value =" 2.1.10" />
1919</vars >
Original file line number Diff line number Diff line change 1212 <images dir =" images" web-path =" images/" />
1313 <categories src =" c.list" />
1414 <vars src =" v.list" />
15- <instance src =" rpc.tree" version =" 0.5.0 " web-path =" /kotlinx-rpc/" />
15+ <instance src =" rpc.tree" version =" 0.5.1 " web-path =" /kotlinx-rpc/" />
1616</ihp>
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ ktor = "3.0.3"
1919logback = " 1.5.16"
2020serialization = " 1.8.0"
2121coroutines = " 1.10.1"
22- kotlinx-rpc = " 0.5.0 "
22+ kotlinx-rpc = " 0.5.1 "
2323
2424[libraries ]
2525# kotlin
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ ktor = "3.0.3"
1515kotlinx-serialization-json = " 1.8.0"
1616kotlinx-coroutines-core = " 1.10.1"
1717logback = " 1.5.16"
18- kotlinx-rpc = " 0.5.0 "
18+ kotlinx-rpc = " 0.5.1 "
1919
2020[libraries ]
2121# kotlin
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ktor = "3.0.3"
55kotlinx-serialization-json = " 1.8.0"
66kotlinx-coroutines-core = " 1.10.1"
77logback = " 1.5.16"
8- kotlinx-rpc = " 0.5.0 "
8+ kotlinx-rpc = " 0.5.1 "
99
1010[libraries ]
1111# kotlin
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66 kotlin(" jvm" ) version " 2.1.10"
77 kotlin(" plugin.serialization" ) version " 2.1.10"
88 id(" io.ktor.plugin" ) version " 3.0.3"
9- id(" org.jetbrains.kotlinx.rpc.plugin" ) version " 0.5.0 "
9+ id(" org.jetbrains.kotlinx.rpc.plugin" ) version " 0.5.1 "
1010}
1111
1212group = " kotlinx.rpc.sample"
@@ -28,12 +28,12 @@ kotlin {
2828}
2929
3030dependencies {
31- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.5.0 " )
32- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.5.0 " )
33- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.5.0 " )
31+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.5.1 " )
32+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.5.1 " )
33+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.5.1 " )
3434
35- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.5.0 " )
36- implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.5.0 " )
35+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.5.1 " )
36+ implementation(" org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.5.1 " )
3737
3838 implementation(" io.ktor:ktor-client-cio" )
3939 implementation(" io.ktor:ktor-server-netty-jvm" )
Original file line number Diff line number Diff line change 11[versions ]
22# core library version
3- kotlinx-rpc = " 0.6.0-SNAPSHOT "
3+ kotlinx-rpc = " 0.5.1 "
44
55# kotlin
66kotlin-lang = " 2.1.10" # or env.KOTLIN_VERSION
You can’t perform that action at this time.
0 commit comments