Skip to content

Commit 3973afa

Browse files
committed
Update Kotlin Version to 0.9.1
1 parent 1f1aa25 commit 3973afa

File tree

14 files changed

+88
-88
lines changed

14 files changed

+88
-88
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
ALGOLIA_INDEX_NAME: 'prod_kotlin_rpc'
3131
ALGOLIA_KEY: '${{ secrets.ALGOLIA_KEY }}'
3232
CONFIG_JSON_PRODUCT: 'kotlinx-rpc'
33-
CONFIG_JSON_VERSION: '0.9.0'
33+
CONFIG_JSON_VERSION: '0.9.1'
3434
DOKKA_ARTIFACT: 'dokka.zip'
3535
ASSEMBLE_DIR: '__docs_assembled'
3636
ASSEMBLE_ARTIFACT: 'assembled.zip'

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.9.0
1+
# 0.9.1
22
> Published 17 July 2025
33
44
### Bug fixes 🐛
@@ -16,7 +16,7 @@
1616
### Other Changes 🧹
1717
* Update version for 0.9.0-SNAPSHOT by @Mr3zee in https://github.com/Kotlin/kotlinx-rpc/pull/387
1818

19-
**Full Changelog**: https://github.com/Kotlin/kotlinx-rpc/compare/0.8.1...0.9.0
19+
**Full Changelog**: https://github.com/Kotlin/kotlinx-rpc/compare/0.8.1...0.9.1
2020

2121
# 0.8.1
2222
> Published 9 July 2025

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Example of a setup in a project's `build.gradle.kts`:
136136
plugins {
137137
kotlin("multiplatform") version "2.2.0"
138138
kotlin("plugin.serialization") version "2.2.0"
139-
id("org.jetbrains.kotlinx.rpc.plugin") version "0.9.0"
139+
id("org.jetbrains.kotlinx.rpc.plugin") version "0.9.1"
140140
}
141141
```
142142

@@ -151,15 +151,15 @@ And now you can add dependencies to your project:
151151
```kotlin
152152
dependencies {
153153
// Client API
154-
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.9.0")
154+
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-client:0.9.1")
155155
// Server API
156-
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.9.0")
156+
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-server:0.9.1")
157157
// Serialization module. Also, protobuf and cbor are provided
158-
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.9.0")
158+
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-serialization-json:0.9.1")
159159

160160
// Transport implementation for Ktor
161-
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-client:0.9.0")
162-
implementation("org.jetbrains.kotlinx:kotlinx-rpc-krpc-ktor-server:0.9.0")
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")
163163

164164
// Ktor API
165165
implementation("io.ktor:ktor-client-cio-jvm:$ktor_version")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[
2-
{"version":"0.9.0","url":"/kotlinx-rpc/0.9.0/","isCurrent":true}
2+
{"version":"0.9.1","url":"/kotlinx-rpc/0.9.1/","isCurrent":true}
33
]

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22

33
This page contains all changes throughout releases of the library.
44

5-
## 0.9.0
5+
## 0.9.1
66
> Published 17 July 2025
77
8-
**Full Changelog**: [0.8.1...0.9.0](https://github.com/Kotlin/kotlinx-rpc/compare/0.8.1...0.9.0)
8+
**Full Changelog**: [0.8.1...0.9.1](https://github.com/Kotlin/kotlinx-rpc/compare/0.8.1...0.9.1)
99

10-
#### Bug fixes 🐛 {id=Bug_fixes_0_9_0}
10+
#### Bug fixes 🐛 {id=Bug_fixes_0_9_1}
1111
* Support nullable contextual serializers by [@yakivy](https://github.com/yakivy) in [#392](https://github.com/Kotlin/kotlinx-rpc/pull/392)
1212
* Make WS plugin installation for Ktor server more flexible by [@Mr3zee](https://github.com/Mr3zee) in [#398](https://github.com/Kotlin/kotlinx-rpc/pull/398)
1313
* Make KtorRpcClient inherit KrpcClient by [@Mr3zee](https://github.com/Mr3zee) in [#396](https://github.com/Kotlin/kotlinx-rpc/pull/396)
1414

15-
#### Documentation 📗 {id=Documentation_0_9_0}
15+
#### Documentation 📗 {id=Documentation_0_9_1}
1616
* Update gRPC doc by [@Mr3zee](https://github.com/Mr3zee) in [#391](https://github.com/Kotlin/kotlinx-rpc/pull/391)
1717
* Add stub targets tags for platforms table by [@Mr3zee](https://github.com/Mr3zee) in [#397](https://github.com/Kotlin/kotlinx-rpc/pull/397)
1818

19-
#### Infra 🚧 {id=Infra_0_9_0}
19+
#### Infra 🚧 {id=Infra_0_9_1}
2020
* Remove the monitor application by [@Mr3zee](https://github.com/Mr3zee) in [#388](https://github.com/Kotlin/kotlinx-rpc/pull/388)
2121

22-
#### Other Changes 🧹 {id=Other_Changes_0_9_0}
22+
#### Other Changes 🧹 {id=Other_Changes_0_9_1}
2323
* Update version for 0.9.0-SNAPSHOT by [@Mr3zee](https://github.com/Mr3zee) in [#387](https://github.com/Kotlin/kotlinx-rpc/pull/387)
2424

2525

docs/pages/kotlinx-rpc/v.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
<var name="host" value="https://kotlin.github.io"/>
1515

1616
<!-- Library versions -->
17-
<var name="kotlinx-rpc-version" value="0.9.0"/>
17+
<var name="kotlinx-rpc-version" value="0.9.1"/>
1818
<var name="kotlin-version" value="2.2.0"/>
1919
</vars>

docs/pages/kotlinx-rpc/writerside.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
<images dir="images" web-path="images/"/>
1313
<categories src="c.list"/>
1414
<vars src="v.list"/>
15-
<instance src="rpc.tree" version="0.9.0" web-path="/kotlinx-rpc/"/>
15+
<instance src="rpc.tree" version="0.9.1" web-path="/kotlinx-rpc/"/>
1616
</ihp>

kotlin-js-store/package-lock.json

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)