Skip to content

Commit 46b5cdc

Browse files
authored
Bump version to 0.18.1 (#3236)
1 parent 6b3462d commit 46b5cdc

File tree

16 files changed

+17
-17
lines changed

16 files changed

+17
-17
lines changed

examples/tutorials/TodoApp/main.wasp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
app TodoApp {
22
wasp: {
3-
version: "^0.18.0" // Pins the version of Wasp to use.
3+
version: "^0.18.1" // Pins the version of Wasp to use.
44
},
55
title: "TodoApp", // Used as the browser tab title. Note that all strings in Wasp are double quoted!
66
head: [

examples/tutorials/TodoAppTs/main.wasp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
app TodoApp {
22
wasp: {
3-
version: "^0.18.0" // Pins the version of Wasp to use.
3+
version: "^0.18.1" // Pins the version of Wasp to use.
44
},
55
title: "TodoApp", // Used as the browser tab title. Note that all strings in Wasp are double quoted!
66
head: [
@@ -55,4 +55,4 @@ action createTask {
5555
action updateTask {
5656
fn: import { updateTask } from "@src/actions",
5757
entities: [Task]
58-
}
58+
}

examples/waspello/main.wasp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ActionConfig, App, ExtImport } from "wasp-config";
22

33
const app = new App("waspello", {
44
title: "Waspello",
5-
wasp: { version: "^0.18.0" },
5+
wasp: { version: "^0.18.1" },
66
});
77

88
app.auth({

examples/waspleau/main.wasp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
app waspleau {
22
wasp: {
3-
version: "^0.18.0"
3+
version: "^0.18.1"
44
},
55

66
title: "Waspleau",

examples/websockets-realtime-voting/main.wasp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
app whereDoWeEat {
22
wasp: {
3-
version: "^0.18.0"
3+
version: "^0.18.1"
44
},
55
title: "where-do-we-eat",
66
client: {

mage/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN cd .wasp/build/server && npm run bundle
3535
# TODO: Use pm2?
3636
# TODO: Use non-root user (node).
3737
FROM base AS server-production
38-
RUN curl -sSL https://get.wasp.sh/installer.sh | sh -s -- -v 0.18.0
38+
RUN curl -sSL https://get.wasp.sh/installer.sh | sh -s -- -v 0.18.1
3939
ENV PATH "$PATH:/root/.local/bin"
4040
ENV NODE_ENV production
4141
WORKDIR /app

mage/main.wasp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
app waspAi {
22
wasp: {
3-
version: "^0.18.0"
3+
version: "^0.18.1"
44
},
55
title: "MAGE - GPT Web App Generator ✨",
66
head: [

waspc/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.18.1 (Unreleased)
44

55
### 🎉 New Features
66

waspc/e2e-tests/test-outputs/waspBuild-golden/waspBuild/main.wasp

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

waspc/e2e-tests/test-outputs/waspCompile-golden/waspCompile/main.wasp

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)