Skip to content

Commit 5f99245

Browse files
committed
Update some wordings
1 parent 990fc66 commit 5f99245

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

.github/workflows/platforms.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check PR Labels
1+
name: Verify Platforms Table
22

33
on:
44
pull_request:
@@ -8,12 +8,12 @@ permissions:
88

99
jobs:
1010
verify-platforms-table:
11-
name: Verify Platforms Table
11+
name: Run Verification
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Sources
1515
uses: actions/checkout@v4
1616
- name: Setup Gradle
1717
uses: gradle/actions/setup-gradle@v3
1818
- name: Check Platforms Table
19-
run: ./gradlew verifyPlatformsTable --no-configuration-cache
19+
run: ./gradlew verifyPlatformTable --no-configuration-cache

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ However, we are also a multi-module library, meaning that some modules may not s
114114

115115
Current high-level status:
116116

117-
| Subsystem | Supported Platforms |
118-
|-----------|--------------------------------------------------|
119-
| Core | Jvm, Js, WasmJs, WasmWasi, Apple, Linux, Windows |
120-
| kRPC | Jvm, Js, WasmJs, Apple, Linux, Windows |
121-
| gRPC | Jvm (in Jvm-only projects) |
117+
| Subsystem | Supported Platforms | Notes |
118+
|-----------|--------------------------------------------------|---------------------------------------------------------------------------------------------|
119+
| Core | Jvm, Js, WasmJs, WasmWasi, Apple, Linux, Windows | |
120+
| kRPC | Jvm, Js, WasmJs, Apple, Linux, Windows | WasmWasi is blocked by [kotlin-logging](https://github.com/oshai/kotlin-logging/issues/433) |
121+
| gRPC | Jvm | Projects with `kotlin("jvm")` **only**! <br/> KMP support is in development |
122122

123123
For more detailed module by module information,
124124
check out our [platform support table](https://kotlin.github.io/kotlinx-rpc/platforms.html).

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,31 @@
1818
<tr>
1919
<td>Subsystem</td>
2020
<td>Supported Platforms</td>
21+
<td>Notes</td>
2122
</tr>
2223
<tr>
2324
<td>Core</td>
2425
<td>Jvm, Js, WasmJs, WasmWasi, Apple, Linux, Windows</td>
26+
<td></td>
2527
</tr>
2628
<tr>
2729
<td>kRPC</td>
2830
<td>Jvm, Js, WasmJs, Apple, Linux, Windows</td>
31+
<td>
32+
WasmWasi is blocked by <a href="https://github.com/oshai/kotlin-logging/issues/433">kotlin-logging</a>.
33+
</td>
2934
</tr>
3035
<tr>
3136
<td>gRPC</td>
32-
<td>Jvm (in Jvm-only projects)</td>
37+
<td>Jvm</td>
38+
<td>
39+
<p>
40+
Projects with <code>kotlin("jvm")</code> <b>only</b>!
41+
</p>
42+
<p>
43+
KMP support is in development
44+
</p>
45+
</td>
3346
</tr>
3447
</table>
3548

0 commit comments

Comments
 (0)