Skip to content

Commit

Permalink
Update wasp version in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sodic committed Jan 24, 2025
1 parent d91b412 commit 3222cf0
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/hackathon-submissions/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app hackathonBetaSubmissions {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "Hackathon Submissions"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/streaming/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app streaming {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "streaming"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/thoughts/main.wasp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { App, ExtImport } from 'wasp-config'

const app = new App('Thoughts', {
title: 'Thoughts',
wasp: { version: '^0.15.0' }
wasp: { version: '^0.16.0' }
});

app.db({
Expand Down
2 changes: 1 addition & 1 deletion examples/todo-typescript/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app TodoTypescript {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "ToDo TypeScript",

Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/TodoApp/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app TodoApp {
wasp: {
version: "^0.15.0" // Pins the version of Wasp to use.
version: "^0.16.0" // Pins the version of Wasp to use.
},
title: "TodoApp", // Used as the browser tab title. Note that all strings in Wasp are double quoted!
auth: {
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorials/TodoAppTs/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app TodoApp {
wasp: {
version: "^0.15.0" // Pins the version of Wasp to use.
version: "^0.16.0" // Pins the version of Wasp to use.
},
title: "TodoApp", // Used as the browser tab title. Note that all strings in Wasp are double quoted!
auth: {
Expand Down
2 changes: 1 addition & 1 deletion examples/waspello/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app waspello {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},

title: "Waspello",
Expand Down
2 changes: 1 addition & 1 deletion examples/waspleau/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app waspleau {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},

title: "Waspleau",
Expand Down
2 changes: 1 addition & 1 deletion examples/websockets-realtime-voting/main.wasp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app whereDoWeEat {
wasp: {
version: "^0.15.0"
version: "^0.16.0"
},
title: "where-do-we-eat",
client: {
Expand Down

0 comments on commit 3222cf0

Please sign in to comment.