Skip to content

Commit a6f0234

Browse files
committed
Update version to 0.2.1
1 parent 2142919 commit a6f0234

File tree

14 files changed

+24
-24
lines changed

14 files changed

+24
-24
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
ALGOLIA_INDEX_NAME: 'prod_kotlin_rpc'
2121
ALGOLIA_KEY: '${{ secrets.ALGOLIA_KEY }}'
2222
CONFIG_JSON_PRODUCT: 'kotlinx-rpc'
23-
CONFIG_JSON_VERSION: '0.2.0'
23+
CONFIG_JSON_VERSION: '0.2.1'
2424

2525
jobs:
2626
build:

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# 0.2.0
2-
> Published 28 June 2024
1+
# 0.2.1
2+
> Published 1 July 2024
33
44
### Breaking changes
55
Release contains breaking changes, see the [migration guide](https://kotlin.github.io/kotlinx-rpc/0-2-0.html)
@@ -47,4 +47,4 @@ Release contains breaking changes, see the [migration guide](https://kotlin.gith
4747
* @turansky made their first contribution in https://github.com/Kotlin/kotlinx-rpc/pull/96
4848
* @vnikolova made their first contribution in https://github.com/Kotlin/kotlinx-rpc/pull/86
4949

50-
**Full Changelog**: https://github.com/Kotlin/kotlinx-rpc/compare/0.1.0...0.2.0
50+
**Full Changelog**: https://github.com/Kotlin/kotlinx-rpc/compare/0.1.0...0.2.1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ plugins {
9595
kotlin("jvm") version "1.9.24"
9696
kotlin("plugin.serialization") version "1.9.24"
9797
id("com.google.devtools.ksp") version "1.9.24-1.0.20"
98-
id("org.jetbrains.kotlinx.rpc.plugin") version "0.2.0"
98+
id("org.jetbrains.kotlinx.rpc.plugin") version "0.2.1"
9999
}
100100
```
101101
### Runtime dependencies
@@ -154,11 +154,11 @@ based on the project's Kotlin version:
154154
```kotlin
155155
plugins {
156156
kotlin("jvm") version "1.9.24"
157-
id("org.jetbrains.kotlinx.rpc.plugin") version "0.2.0"
157+
id("org.jetbrains.kotlinx.rpc.plugin") version "0.2.1"
158158
}
159159

160160
dependencies {
161-
// version 0.2.0 is set by the Gradle plugin
161+
// version 0.2.1 is set by the Gradle plugin
162162
implementation("org.jetbrains.kotlinx:kotlinx-rpc-core")
163163
}
164164
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[
2-
{"version":"0.2.0","url":"/kotlinx-rpc/0.2.0/","isCurrent":true}
2+
{"version":"0.2.1","url":"/kotlinx-rpc/0.2.1/","isCurrent":true}
33
]

docs/pages/kotlinx-rpc/rpc.tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
</toc-element>
2727
<toc-element topic="versions.topic"/>
2828
<toc-element toc-title="Migration guides">
29-
<toc-element topic="0-2-0.topic"/>
29+
<toc-element topic="0-2-1.topic"/>
3030
</toc-element>
3131
</instance-profile>

docs/pages/kotlinx-rpc/topics/0-2-0.topic renamed to docs/pages/kotlinx-rpc/topics/0-2-1.topic

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
SYSTEM "https://resources.jetbrains.com/writerside/1.0/xhtml-entities.dtd">
88
<topic xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
99
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/topic.v2.xsd"
10-
title="Migration to 0.2.0" id="0-2-0">
10+
title="Migration to 0.2.1" id="0-2-1" help-id="0-2-0">
1111

1212
<p>
13-
Version <code>0.2.0</code> introduces changes that are not compatible with the previous <code>0.1.0</code> release.
13+
Version <code>0.2.1</code> introduces changes that are not compatible with the previous <code>0.1.0</code> release.
1414
This guide contains a full list of all incompatible changes.
1515
</p>
1616

@@ -92,7 +92,7 @@
9292
All other artifacts will use a simplified versioning format like this:
9393
</p>
9494
<code-block>
95-
org.jetbrains.kotlinx.kotlinx-rpc-core:0.2.0
95+
org.jetbrains.kotlinx.kotlinx-rpc-core:0.2.1
9696
</code-block>
9797
<p>
9898
Our gradle plugin is still capable of including proper versions of artifacts for you.
@@ -105,7 +105,7 @@
105105

106106
<chapter title="Repositories" id="repositories">
107107
<p>
108-
Version <code>0.2.0</code> is being released to the Maven Central repository instead of Space, like it was previously.
108+
Version <code>0.2.1</code> is being released to the Maven Central repository instead of Space, like it was previously.
109109
In your gradle build scripts (<code>build.gradle.kts</code>) you need to update the repository to ensure you consume the correct artifacts.
110110
</p>
111111
<p>Old configuration:</p>

docs/pages/kotlinx-rpc/v.list

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

1616
<!-- Library versions -->
17-
<var name="kotlinx-rpc-version" value="0.2.0"/>
17+
<var name="kotlinx-rpc-version" value="0.2.1"/>
1818
<var name="kotlin-version" value="1.9.24"/>
1919
<var name="ksp-version" value="1.9.24-1.0.20"/>
2020
</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.2.0" web-path="/kotlinx-rpc/"/>
15+
<instance src="rpc.tree" version="0.2.1" web-path="/kotlinx-rpc/"/>
1616
</ihp>

gradle-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ gradlePlugin {
4141
The plugin ensures correct RPC configurations for your project, that will allow proper code generation.
4242
4343
Additionally, it enforces proper artifacts versions for your project, depending on your Kotlin version.
44-
Resulting versions of the kotlinx.rpc dependencies will be 'kotlinVersion-kotlinxRpcVersion', for example '1.9.24-0.2.0', where '0.2.0' is the kotlinx.rpc version.
44+
Resulting versions of the kotlinx.rpc dependencies will be 'kotlinVersion-kotlinxRpcVersion', for example '1.9.24-0.2.1', where '0.2.1' is the kotlinx.rpc version.
4545
""".trimIndent()
4646
}
4747
}
@@ -54,7 +54,7 @@ gradlePlugin {
5454
implementationClass = "kotlinx.rpc.RPCPlatformPlugin"
5555
description = """
5656
The plugin enforces proper artifacts versions for your project, depending on your Kotlin version.
57-
Resulting versions of the kotlinx.rpc dependencies will be 'kotlinVersion-kotlinxRpcVersion', for example '1.9.24-0.2.0', where '0.2.0' is the kotlinx.rpc version.
57+
Resulting versions of the kotlinx.rpc dependencies will be 'kotlinVersion-kotlinxRpcVersion', for example '1.9.24-0.2.1', where '0.2.1' is the kotlinx.rpc version.
5858
""".trimIndent()
5959
}
6060
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
# core library version
3-
kotlinx-rpc = "0.2.0"
3+
kotlinx-rpc = "0.2.1"
44

55
# kotlin
66
kotlin-lang = "1.9.24"

0 commit comments

Comments
 (0)