Skip to content

Commit

Permalink
Fix broken links and update package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Apr 25, 2024
1 parent 0c19343 commit 2909477
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 77 deletions.
5 changes: 1 addition & 4 deletions code_snippets/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ plugins {
}

repositories {
maven {
url = URI.create("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
}

val restateVersion = "0.9.0-SNAPSHOT"
val restateVersion = "0.9.0"

dependencies {
// Restate SDK
Expand Down
5 changes: 1 addition & 4 deletions code_snippets/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ plugins {
}

repositories {
maven {
url = URI.create("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
}

val restateVersion = "0.9.0-SNAPSHOT"
val restateVersion = "0.9.0"

dependencies {
// Annotation processor
Expand Down
91 changes: 56 additions & 35 deletions code_snippets/ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions code_snippets/ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"app-dev": "ts-node-dev --watch src --respawn --transpile-only ./src/app.ts"
},
"dependencies": {
"@restatedev/restate-sdk": "dev",
"@restatedev/restate-sdk-ingress": "dev",
"@restatedev/restate-cdk": "0.7.0"
"@restatedev/restate-sdk": "0.9.0",
"@restatedev/restate-sdk-clients": "^0.9.0",
"@restatedev/restate-cdk": "0.8.0"
},
"devDependencies": {
"ts-node-dev": "^1.1.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as restate from "@restatedev/restate-sdk-ingress";
import * as restate from "@restatedev/restate-sdk-clients";
import {greetCounterObject, greeterService} from "../utils";

// <start_delayed_call_node>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as restate from "@restatedev/restate-sdk-ingress";
import * as restate from "@restatedev/restate-sdk-clients";
import {greetCounterObject, greeterService} from "../utils";

// <start_one_way_call_node>
Expand Down
2 changes: 1 addition & 1 deletion code_snippets/ts/src/concepts/invocations/ingress/rpc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as restate from "@restatedev/restate-sdk-ingress";
import * as restate from "@restatedev/restate-sdk-clients";
import {greetCounterObject, greeterService} from "../utils";

// <start_rpc_call_node>
Expand Down
Loading

0 comments on commit 2909477

Please sign in to comment.