From 3e66173ef9f5b14f88b6afa7bb585d87559b436e Mon Sep 17 00:00:00 2001 From: Lucas Lima Date: Tue, 27 Aug 2024 06:29:12 -0300 Subject: [PATCH] Fix version number in docs (#2217) --- web/docs/auth/auth-hooks.md | 8 ++++---- web/docs/auth/email.md | 4 ++-- web/docs/auth/social-auth/github.md | 16 ++++++++-------- web/docs/auth/social-auth/google.md | 16 ++++++++-------- web/docs/auth/social-auth/keycloak.md | 16 ++++++++-------- web/docs/auth/social-auth/overview.md | 8 ++++---- web/docs/auth/username-and-pass.md | 12 ++++++------ web/docs/data-model/crud.md | 2 +- web/docs/introduction/introduction.md | 2 +- web/docs/migrate-from-0-13-to-0-14.md | 2 +- web/docs/project/customizing-app.md | 8 ++++---- web/docs/tutorial/03-pages.md | 4 ++-- web/docs/tutorial/07-auth.md | 2 +- .../version-0.14.0/auth/auth-hooks.md | 8 ++++---- web/versioned_docs/version-0.14.0/auth/email.md | 4 ++-- .../version-0.14.0/auth/social-auth/github.md | 16 ++++++++-------- .../version-0.14.0/auth/social-auth/google.md | 16 ++++++++-------- .../version-0.14.0/auth/social-auth/keycloak.md | 16 ++++++++-------- .../version-0.14.0/auth/social-auth/overview.md | 8 ++++---- .../version-0.14.0/auth/username-and-pass.md | 12 ++++++------ .../version-0.14.0/data-model/crud.md | 2 +- .../version-0.14.0/introduction/introduction.md | 2 +- .../version-0.14.0/migrate-from-0-13-to-0-14.md | 2 +- .../version-0.14.0/project/customizing-app.md | 8 ++++---- .../version-0.14.0/tutorial/03-pages.md | 4 ++-- .../version-0.14.0/tutorial/07-auth.md | 2 +- 26 files changed, 100 insertions(+), 100 deletions(-) diff --git a/web/docs/auth/auth-hooks.md b/web/docs/auth/auth-hooks.md index 86476ad28..95aa6b3e7 100644 --- a/web/docs/auth/auth-hooks.md +++ b/web/docs/auth/auth-hooks.md @@ -40,7 +40,7 @@ To use auth hooks, you must first declare them in the Wasp file: ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, @@ -59,7 +59,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, @@ -349,7 +349,7 @@ Read more about the data the `onBeforeOAuthRedirect` hook receives in the [API R ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, @@ -368,7 +368,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, diff --git a/web/docs/auth/email.md b/web/docs/auth/email.md index c5e48fcf4..90feb806c 100644 --- a/web/docs/auth/email.md +++ b/web/docs/auth/email.md @@ -49,7 +49,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -83,7 +83,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/github.md b/web/docs/auth/social-auth/github.md index 17df1f516..bdb54c83e 100644 --- a/web/docs/auth/social-auth/github.md +++ b/web/docs/auth/social-auth/github.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -68,7 +68,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -276,7 +276,7 @@ Add `gitHub: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -296,7 +296,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -374,7 +374,7 @@ For an up to date info about the data received from GitHub, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -421,7 +421,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -489,7 +489,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -513,7 +513,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/google.md b/web/docs/auth/social-auth/google.md index 9be2c9715..69a7fbeaa 100644 --- a/web/docs/auth/social-auth/google.md +++ b/web/docs/auth/social-auth/google.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -66,7 +66,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -317,7 +317,7 @@ Add `google: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -337,7 +337,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -400,7 +400,7 @@ For an up to date info about the data received from Google, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -447,7 +447,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -515,7 +515,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -539,7 +539,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/keycloak.md b/web/docs/auth/social-auth/keycloak.md index d576b00ce..ef241a1d9 100644 --- a/web/docs/auth/social-auth/keycloak.md +++ b/web/docs/auth/social-auth/keycloak.md @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -65,7 +65,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -283,7 +283,7 @@ Add `keycloak: {}` to the `auth.methods` dictionary to use it with default setti ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -303,7 +303,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -359,7 +359,7 @@ For up-to-date info about the data received from Keycloak, please refer to the [ ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -406,7 +406,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -474,7 +474,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -498,7 +498,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/overview.md b/web/docs/auth/social-auth/overview.md index 1244c91d1..35987b1d6 100644 --- a/web/docs/auth/social-auth/overview.md +++ b/web/docs/auth/social-auth/overview.md @@ -36,7 +36,7 @@ Here's what the full setup looks like: ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -63,7 +63,7 @@ model User { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -148,7 +148,7 @@ Declare an import under `app.auth.methods.google.userSignupFields` (the example ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -180,7 +180,7 @@ export const userSignupFields = { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/docs/auth/username-and-pass.md b/web/docs/auth/username-and-pass.md index 89f40ae92..9a731b9e4 100644 --- a/web/docs/auth/username-and-pass.md +++ b/web/docs/auth/username-and-pass.md @@ -44,7 +44,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -64,7 +64,7 @@ app myApp { ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -623,7 +623,7 @@ When you receive the `user` object [on the client or the server](./overview.md#a ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -647,7 +647,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -678,7 +678,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -699,7 +699,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/docs/data-model/crud.md b/web/docs/data-model/crud.md index 122aaca18..a2d62de2d 100644 --- a/web/docs/data-model/crud.md +++ b/web/docs/data-model/crud.md @@ -73,7 +73,7 @@ We can start by running `wasp new tasksCrudApp` and then adding the following to ```wasp title="main.wasp" app tasksCrudApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "Tasks Crud App", diff --git a/web/docs/introduction/introduction.md b/web/docs/introduction/introduction.md index a4a229eeb..43da63417 100644 --- a/web/docs/introduction/introduction.md +++ b/web/docs/introduction/introduction.md @@ -55,7 +55,7 @@ Let's give our app a title and let's immediately turn on the full-stack authenti ```wasp title="main.wasp" app RecipeApp { title: "My Recipes", - wasp: { version: "^0.13.0" }, + wasp: { version: "^0.14.0" }, auth: { methods: { usernameAndPassword: {} }, onAuthFailedRedirectTo: "/login", diff --git a/web/docs/migrate-from-0-13-to-0-14.md b/web/docs/migrate-from-0-13-to-0-14.md index a49503fd7..97bd5fd06 100644 --- a/web/docs/migrate-from-0-13-to-0-14.md +++ b/web/docs/migrate-from-0-13-to-0-14.md @@ -50,7 +50,7 @@ psl=} ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "MyApp", } diff --git a/web/docs/project/customizing-app.md b/web/docs/project/customizing-app.md index 1d569a432..31c262f8e 100644 --- a/web/docs/project/customizing-app.md +++ b/web/docs/project/customizing-app.md @@ -9,7 +9,7 @@ Each Wasp project can have only one `app` type declaration. It is used to config ```wasp app todoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "ToDo App", head: [ @@ -27,7 +27,7 @@ You may want to change the title of your app, which appears in the browser tab, ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "BookFace" } @@ -42,7 +42,7 @@ An example of adding extra style sheets and scripts: ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", head: [ // optional @@ -58,7 +58,7 @@ app myApp { ```wasp app todoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "ToDo App", head: [ diff --git a/web/docs/tutorial/03-pages.md b/web/docs/tutorial/03-pages.md index bfd25672a..bfea88d2e 100644 --- a/web/docs/tutorial/03-pages.md +++ b/web/docs/tutorial/03-pages.md @@ -194,7 +194,7 @@ Your Wasp file should now look like this: ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "TodoApp" } @@ -211,7 +211,7 @@ page MainPage { ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "TodoApp" } diff --git a/web/docs/tutorial/07-auth.md b/web/docs/tutorial/07-auth.md index 9f40d819c..d4736bf0d 100644 --- a/web/docs/tutorial/07-auth.md +++ b/web/docs/tutorial/07-auth.md @@ -38,7 +38,7 @@ Next, tell Wasp to use full-stack [authentication](../auth/overview): ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, // highlight-start title: "TodoApp", diff --git a/web/versioned_docs/version-0.14.0/auth/auth-hooks.md b/web/versioned_docs/version-0.14.0/auth/auth-hooks.md index 86476ad28..95aa6b3e7 100644 --- a/web/versioned_docs/version-0.14.0/auth/auth-hooks.md +++ b/web/versioned_docs/version-0.14.0/auth/auth-hooks.md @@ -40,7 +40,7 @@ To use auth hooks, you must first declare them in the Wasp file: ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, @@ -59,7 +59,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, @@ -349,7 +349,7 @@ Read more about the data the `onBeforeOAuthRedirect` hook receives in the [API R ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, @@ -368,7 +368,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, auth: { userEntity: User, diff --git a/web/versioned_docs/version-0.14.0/auth/email.md b/web/versioned_docs/version-0.14.0/auth/email.md index c5e48fcf4..90feb806c 100644 --- a/web/versioned_docs/version-0.14.0/auth/email.md +++ b/web/versioned_docs/version-0.14.0/auth/email.md @@ -49,7 +49,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -83,7 +83,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.14.0/auth/social-auth/github.md b/web/versioned_docs/version-0.14.0/auth/social-auth/github.md index 17df1f516..bdb54c83e 100644 --- a/web/versioned_docs/version-0.14.0/auth/social-auth/github.md +++ b/web/versioned_docs/version-0.14.0/auth/social-auth/github.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -68,7 +68,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -276,7 +276,7 @@ Add `gitHub: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -296,7 +296,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -374,7 +374,7 @@ For an up to date info about the data received from GitHub, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -421,7 +421,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -489,7 +489,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -513,7 +513,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.14.0/auth/social-auth/google.md b/web/versioned_docs/version-0.14.0/auth/social-auth/google.md index 9be2c9715..69a7fbeaa 100644 --- a/web/versioned_docs/version-0.14.0/auth/social-auth/google.md +++ b/web/versioned_docs/version-0.14.0/auth/social-auth/google.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -66,7 +66,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -317,7 +317,7 @@ Add `google: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -337,7 +337,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -400,7 +400,7 @@ For an up to date info about the data received from Google, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -447,7 +447,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -515,7 +515,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -539,7 +539,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.14.0/auth/social-auth/keycloak.md b/web/versioned_docs/version-0.14.0/auth/social-auth/keycloak.md index d576b00ce..ef241a1d9 100644 --- a/web/versioned_docs/version-0.14.0/auth/social-auth/keycloak.md +++ b/web/versioned_docs/version-0.14.0/auth/social-auth/keycloak.md @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -65,7 +65,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -283,7 +283,7 @@ Add `keycloak: {}` to the `auth.methods` dictionary to use it with default setti ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -303,7 +303,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -359,7 +359,7 @@ For up-to-date info about the data received from Keycloak, please refer to the [ ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -406,7 +406,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -474,7 +474,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -498,7 +498,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.14.0/auth/social-auth/overview.md b/web/versioned_docs/version-0.14.0/auth/social-auth/overview.md index 1244c91d1..35987b1d6 100644 --- a/web/versioned_docs/version-0.14.0/auth/social-auth/overview.md +++ b/web/versioned_docs/version-0.14.0/auth/social-auth/overview.md @@ -36,7 +36,7 @@ Here's what the full setup looks like: ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -63,7 +63,7 @@ model User { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -148,7 +148,7 @@ Declare an import under `app.auth.methods.google.userSignupFields` (the example ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -180,7 +180,7 @@ export const userSignupFields = { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.14.0/auth/username-and-pass.md b/web/versioned_docs/version-0.14.0/auth/username-and-pass.md index 89f40ae92..9a731b9e4 100644 --- a/web/versioned_docs/version-0.14.0/auth/username-and-pass.md +++ b/web/versioned_docs/version-0.14.0/auth/username-and-pass.md @@ -44,7 +44,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -64,7 +64,7 @@ app myApp { ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -623,7 +623,7 @@ When you receive the `user` object [on the client or the server](./overview.md#a ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -647,7 +647,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -678,7 +678,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { @@ -699,7 +699,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.14.0/data-model/crud.md b/web/versioned_docs/version-0.14.0/data-model/crud.md index 122aaca18..a2d62de2d 100644 --- a/web/versioned_docs/version-0.14.0/data-model/crud.md +++ b/web/versioned_docs/version-0.14.0/data-model/crud.md @@ -73,7 +73,7 @@ We can start by running `wasp new tasksCrudApp` and then adding the following to ```wasp title="main.wasp" app tasksCrudApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "Tasks Crud App", diff --git a/web/versioned_docs/version-0.14.0/introduction/introduction.md b/web/versioned_docs/version-0.14.0/introduction/introduction.md index a4a229eeb..43da63417 100644 --- a/web/versioned_docs/version-0.14.0/introduction/introduction.md +++ b/web/versioned_docs/version-0.14.0/introduction/introduction.md @@ -55,7 +55,7 @@ Let's give our app a title and let's immediately turn on the full-stack authenti ```wasp title="main.wasp" app RecipeApp { title: "My Recipes", - wasp: { version: "^0.13.0" }, + wasp: { version: "^0.14.0" }, auth: { methods: { usernameAndPassword: {} }, onAuthFailedRedirectTo: "/login", diff --git a/web/versioned_docs/version-0.14.0/migrate-from-0-13-to-0-14.md b/web/versioned_docs/version-0.14.0/migrate-from-0-13-to-0-14.md index a49503fd7..97bd5fd06 100644 --- a/web/versioned_docs/version-0.14.0/migrate-from-0-13-to-0-14.md +++ b/web/versioned_docs/version-0.14.0/migrate-from-0-13-to-0-14.md @@ -50,7 +50,7 @@ psl=} ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "MyApp", } diff --git a/web/versioned_docs/version-0.14.0/project/customizing-app.md b/web/versioned_docs/version-0.14.0/project/customizing-app.md index 1d569a432..31c262f8e 100644 --- a/web/versioned_docs/version-0.14.0/project/customizing-app.md +++ b/web/versioned_docs/version-0.14.0/project/customizing-app.md @@ -9,7 +9,7 @@ Each Wasp project can have only one `app` type declaration. It is used to config ```wasp app todoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "ToDo App", head: [ @@ -27,7 +27,7 @@ You may want to change the title of your app, which appears in the browser tab, ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "BookFace" } @@ -42,7 +42,7 @@ An example of adding extra style sheets and scripts: ```wasp app myApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "My App", head: [ // optional @@ -58,7 +58,7 @@ app myApp { ```wasp app todoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "ToDo App", head: [ diff --git a/web/versioned_docs/version-0.14.0/tutorial/03-pages.md b/web/versioned_docs/version-0.14.0/tutorial/03-pages.md index bfd25672a..bfea88d2e 100644 --- a/web/versioned_docs/version-0.14.0/tutorial/03-pages.md +++ b/web/versioned_docs/version-0.14.0/tutorial/03-pages.md @@ -194,7 +194,7 @@ Your Wasp file should now look like this: ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "TodoApp" } @@ -211,7 +211,7 @@ page MainPage { ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, title: "TodoApp" } diff --git a/web/versioned_docs/version-0.14.0/tutorial/07-auth.md b/web/versioned_docs/version-0.14.0/tutorial/07-auth.md index 9f40d819c..d4736bf0d 100644 --- a/web/versioned_docs/version-0.14.0/tutorial/07-auth.md +++ b/web/versioned_docs/version-0.14.0/tutorial/07-auth.md @@ -38,7 +38,7 @@ Next, tell Wasp to use full-stack [authentication](../auth/overview): ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.13.0" + version: "^0.14.0" }, // highlight-start title: "TodoApp",