From 8954ad32b0e1602bdc2dd55a68291e5829028c9d Mon Sep 17 00:00:00 2001 From: Giselle van Dongen Date: Tue, 22 Aug 2023 16:33:12 +0200 Subject: [PATCH] Fix links to new Tour of Restate in docs --- README.md | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- src/app/app.ts | 2 +- src/app/checkout.ts | 2 +- src/app/ticket_service.ts | 2 +- src/app/user_session.ts | 2 +- src/aux/email_client.ts | 2 +- src/aux/payment_client.ts | 2 +- src/part1/app.ts | 2 +- src/part1/checkout.ts | 2 +- src/part1/ticket_service.ts | 2 +- src/part1/user_session.ts | 2 +- src/part2/app.ts | 2 +- src/part2/checkout.ts | 2 +- src/part2/ticket_service.ts | 2 +- src/part2/user_session.ts | 2 +- src/part3/app.ts | 2 +- src/part3/checkout.ts | 2 +- src/part3/ticket_service.ts | 2 +- src/part3/user_session.ts | 2 +- src/part4/app.ts | 2 +- src/part4/checkout.ts | 2 +- src/part4/ticket_service.ts | 2 +- src/part4/user_session.ts | 2 +- 25 files changed, 28 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index e307c70..2cefda8 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,15 @@ This tutorial takes your through key Restate features by developing an end-to-en ❓ Learn more about Restate from the [Restate documentation](https://docs.restate.dev). -Have a look at the [Tour of Restate tutorial](https://docs.restate.dev/tour/typescript-handler) in the documentation to build and run the application in this repository. +Have a look at the [Tour of Restate tutorial](https://docs.restate.dev/tour) in the documentation to build and run the application in this repository. ## Releasing In order to create a new release, push a tag of the form `vX.Y.Z`. -Then [create a release via GitHub](https://github.com/restatedev/tour-of-restate-typescript-handler/releases). +Then [create a release via GitHub](https://github.com/restatedev/tour-of-restate-typescript/releases). Releases of this repository are referred to by the [documentation](https://github.com/restatedev/documentation). -Please update the version tag referenced on the [Tour of Restate](https://github.com/restatedev/documentation/blob/main/docs/tour/typescript-handler.mdx) documentation page. +Please update the version tag referenced on the [Tour of Restate](https://github.com/restatedev/documentation/blob/main/docs/tour.mdx) documentation page. ### Upgrading Typescript SDK Upgrade the version tag in `package.json` and rerun the different parts of the tutorial: diff --git a/package-lock.json b/package-lock.json index 82a0d71..82a31b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@restatedev/tour-of-restate-typescript-handler", + "name": "@restatedev/tour-of-restate-typescript", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@restatedev/tour-of-restate-typescript-handler", + "name": "@restatedev/tour-of-restate-typescript", "version": "0.0.1", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 71c4126..d45fec4 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@restatedev/tour-of-restate-typescript-handler", + "name": "@restatedev/tour-of-restate-typescript", "version": "0.0.1", "description": "Tour of Restate's key features with the Typescript handler API", "type": "commonjs", diff --git a/src/app/app.ts b/src/app/app.ts index 34e284b..81367c7 100644 --- a/src/app/app.ts +++ b/src/app/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/app/checkout.ts b/src/app/checkout.ts index 1cda9d0..e1c2c26 100644 --- a/src/app/checkout.ts +++ b/src/app/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/app/ticket_service.ts b/src/app/ticket_service.ts index eae7671..d4f0cee 100644 --- a/src/app/ticket_service.ts +++ b/src/app/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/app/user_session.ts b/src/app/user_session.ts index 50e6a2b..a372b8d 100644 --- a/src/app/user_session.ts +++ b/src/app/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/aux/email_client.ts b/src/aux/email_client.ts index 34cecb2..1e41cbf 100644 --- a/src/aux/email_client.ts +++ b/src/aux/email_client.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ export class EmailClient { diff --git a/src/aux/payment_client.ts b/src/aux/payment_client.ts index b7debe7..ef57f3d 100644 --- a/src/aux/payment_client.ts +++ b/src/aux/payment_client.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ let i = 0; diff --git a/src/part1/app.ts b/src/part1/app.ts index 34e284b..81367c7 100644 --- a/src/part1/app.ts +++ b/src/part1/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part1/checkout.ts b/src/part1/checkout.ts index 1cda9d0..e1c2c26 100644 --- a/src/part1/checkout.ts +++ b/src/part1/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part1/ticket_service.ts b/src/part1/ticket_service.ts index dd35b8d..706e02c 100644 --- a/src/part1/ticket_service.ts +++ b/src/part1/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part1/user_session.ts b/src/part1/user_session.ts index c7453eb..84355e4 100644 --- a/src/part1/user_session.ts +++ b/src/part1/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part2/app.ts b/src/part2/app.ts index 34e284b..81367c7 100644 --- a/src/part2/app.ts +++ b/src/part2/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part2/checkout.ts b/src/part2/checkout.ts index 1cda9d0..e1c2c26 100644 --- a/src/part2/checkout.ts +++ b/src/part2/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part2/ticket_service.ts b/src/part2/ticket_service.ts index d5ddeda..cef181b 100644 --- a/src/part2/ticket_service.ts +++ b/src/part2/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part2/user_session.ts b/src/part2/user_session.ts index 50a271d..03f5c16 100644 --- a/src/part2/user_session.ts +++ b/src/part2/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part3/app.ts b/src/part3/app.ts index 34e284b..81367c7 100644 --- a/src/part3/app.ts +++ b/src/part3/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part3/checkout.ts b/src/part3/checkout.ts index a788b05..a017cf7 100644 --- a/src/part3/checkout.ts +++ b/src/part3/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part3/ticket_service.ts b/src/part3/ticket_service.ts index d5ddeda..cef181b 100644 --- a/src/part3/ticket_service.ts +++ b/src/part3/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part3/user_session.ts b/src/part3/user_session.ts index 1553e34..f519f58 100644 --- a/src/part3/user_session.ts +++ b/src/part3/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part4/app.ts b/src/part4/app.ts index 34e284b..81367c7 100644 --- a/src/part4/app.ts +++ b/src/part4/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part4/checkout.ts b/src/part4/checkout.ts index 568874e..2c3ed3b 100644 --- a/src/part4/checkout.ts +++ b/src/part4/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part4/ticket_service.ts b/src/part4/ticket_service.ts index d5ddeda..cef181b 100644 --- a/src/part4/ticket_service.ts +++ b/src/part4/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk"; diff --git a/src/part4/user_session.ts b/src/part4/user_session.ts index 0fe5f06..2cf8044 100644 --- a/src/part4/user_session.ts +++ b/src/part4/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript-handler + * https://github.com/restatedev/tour-of-restate-typescript */ import * as restate from "@restatedev/restate-sdk";