Skip to content

Commit 9bc4f14

Browse files
Update README
1 parent 9461764 commit 9bc4f14

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ gradle init --type java-application
4545
Add the annotation processor dependency [sdk-api-gen](sdk-api-gen), and then, depending on whether you want to deploy using HTTP or Lambda, use the appropriate dependency:
4646

4747
```kotlin
48-
annotationProcessor("dev.restate:sdk-api-gen:2.0.0")
48+
annotationProcessor("dev.restate:sdk-api-gen:2.3.0")
4949

5050
// For HTTP services
51-
implementation("dev.restate:sdk-java-http:2.0.0")
51+
implementation("dev.restate:sdk-java-http:2.3.0")
5252
// For Lambda services
53-
// implementation("dev.restate:sdk-java-lambda:2.0.0")
53+
// implementation("dev.restate:sdk-java-lambda:2.3.0")
5454
```
5555

5656
### Setup a project (Kotlin)
@@ -65,19 +65,19 @@ Add the [Kotlin symbol processing](https://kotlinlang.org/docs/ksp-quickstart.ht
6565

6666
```
6767
plugins {
68-
id("com.google.devtools.ksp") version "2.0.0-1.0.21"
68+
id("com.google.devtools.ksp") version "2.2.10-2.0.2"
6969
}
7070
```
7171

7272
Add the ksp dependency [sdk-api-gen](sdk-api-kotlin-gen), and then, depending on whether you want to deploy using HTTP or Lambda, use the appropriate dependency:
7373

7474
```kotlin
75-
ksp("dev.restate:sdk-api-kotlin-gen:2.0.0")
75+
ksp("dev.restate:sdk-api-kotlin-gen:2.3.0")
7676

7777
// For HTTP services
78-
implementation("dev.restate:sdk-kotlin-http:2.0.0")
78+
implementation("dev.restate:sdk-kotlin-http:2.3.0")
7979
// For Lambda services
80-
// implementation("dev.restate:sdk-kotlin-lambda:2.0.0")
80+
// implementation("dev.restate:sdk-kotlin-lambda:2.3.0")
8181
```
8282

8383
### Implement your first Restate component (Java)
@@ -287,7 +287,7 @@ This library follows [Semantic Versioning](https://semver.org/).
287287

288288
The compatibility with Restate is described in the following table:
289289

290-
| Restate Server\sdk-java | 1.0 - 1.1 | 1.2 | 2.0 - 2.1 | 2.2 |
290+
| Restate Server\sdk-java | 1.0 - 1.1 | 1.2 | 2.0 - 2.1 | 2.2 - 2.3 |
291291
|-------------------------|-----------|-----|-----------|------------------|
292292
| 1.0 |||||
293293
| 1.1 |||||

0 commit comments

Comments
 (0)