Skip to content

Commit 1b1ea2c

Browse files
committed
Update version to 0.1.0
1 parent 07d8d08 commit 1b1ea2c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+10
-10
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
# kotlin
33
kotlin-lang = "1.9.24"
4-
rpc-core = "6.0-beta" # version for plugins and suffix for rpc-full
4+
rpc-core = "0.1.0" # version for plugins and suffix for rpc-full
55

66
# kotlin-dependent versions, will be replaced with the actual versions by a settings-conventions plugin
77
# from 'kotlin-versions-lookup.json' lookup table

runtime/src/commonMain/kotlin/kotlinx/rpc/internal/RPCVersion.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package kotlinx.rpc.internal
99
*/
1010
internal enum class RPCVersion {
1111
/**
12-
* Version 6.0-beta.
12+
* Version 0.1.0
1313
*/
14-
V_6_0_BETA,
14+
V_0_1_0_BETA,
1515
}

runtime/src/commonMain/kotlin/kotlinx/rpc/internal/transport/RPCPlugin.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public enum class RPCPlugin(
3434
*
3535
* Can be safely ignored. Endpoint must only handle the plugins it knows of.
3636
*/
37-
UNKNOWN(0, RPCVersion.V_6_0_BETA),
37+
UNKNOWN(0, RPCVersion.V_0_1_0_BETA),
3838

3939
/**
4040
* Represents the handshake plugin of the kRPC protocol.
@@ -45,12 +45,12 @@ public enum class RPCPlugin(
4545
* However, servers will be able to communicate with clients that do not support handshake,
4646
* BUT not the other way around.
4747
*/
48-
HANDSHAKE(1, RPCVersion.V_6_0_BETA),
48+
HANDSHAKE(1, RPCVersion.V_0_1_0_BETA),
4949

5050
/**
5151
* This feature adds support for proper service/request cancellation over the network.
5252
*/
53-
CANCELLATION(2, RPCVersion.V_6_0_BETA),
53+
CANCELLATION(2, RPCVersion.V_0_1_0_BETA),
5454
;
5555

5656
@InternalRPCApi

0 commit comments

Comments
 (0)