Skip to content

Commit

Permalink
Update mentions of Wasp version in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sodic committed Jan 30, 2025
1 parent 36e1bcb commit b3f6175
Show file tree
Hide file tree
Showing 36 changed files with 128 additions and 128 deletions.
8 changes: 4 additions & 4 deletions web/docs/auth/auth-hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ To use auth hooks, you must first declare them in the Wasp file:
```wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
auth: {
userEntity: User,
Expand All @@ -77,7 +77,7 @@ app myApp {
```wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
auth: {
userEntity: User,
Expand Down Expand Up @@ -583,7 +583,7 @@ If you want to refresh the token periodically, use a [Wasp Job](../advanced/jobs
```wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
auth: {
userEntity: User,
Expand All @@ -605,7 +605,7 @@ app myApp {
```wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
auth: {
userEntity: User,
Expand Down
4 changes: 2 additions & 2 deletions web/docs/auth/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Let's start with adding the following to our `main.wasp` file:
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -85,7 +85,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
2 changes: 1 addition & 1 deletion web/docs/auth/entities/entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ For example, you might set it to `User`:
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
16 changes: 8 additions & 8 deletions web/docs/auth/social-auth/discord.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object:
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -67,7 +67,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -276,7 +276,7 @@ Add `discord: {}` to the `auth.methods` dictionary to use it with default settin
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -296,7 +296,7 @@ app myApp {
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -361,7 +361,7 @@ For an up to date info about the data received from Discord, please refer to the
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -408,7 +408,7 @@ export function getConfig() {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -476,7 +476,7 @@ When you receive the `user` object [on the client or the server](../overview.md#
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -500,7 +500,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
16 changes: 8 additions & 8 deletions web/docs/auth/social-auth/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object:
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -68,7 +68,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -296,7 +296,7 @@ app myApp {
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -421,7 +421,7 @@ export function getConfig() {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -513,7 +513,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
16 changes: 8 additions & 8 deletions web/docs/auth/social-auth/google.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object:
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -66,7 +66,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -337,7 +337,7 @@ app myApp {
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -447,7 +447,7 @@ export function getConfig() {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -539,7 +539,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
16 changes: 8 additions & 8 deletions web/docs/auth/social-auth/keycloak.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object:
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -65,7 +65,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -303,7 +303,7 @@ app myApp {
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -406,7 +406,7 @@ export function getConfig() {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -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.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -498,7 +498,7 @@ app myApp {
```wasp title="main.wasp"
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
8 changes: 4 additions & 4 deletions web/docs/auth/social-auth/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Here's what the full setup looks like:
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand All @@ -63,7 +63,7 @@ model User {
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -148,7 +148,7 @@ Declare an import under `app.auth.methods.google.userSignupFields` (the example
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down Expand Up @@ -180,7 +180,7 @@ export const userSignupFields = {
```wasp title=main.wasp
app myApp {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "My App",
auth: {
Expand Down
Loading

0 comments on commit b3f6175

Please sign in to comment.