Migration from 0.25 to 0.26
To install the latest Wasp version, open your terminal and run:
npm i -g @wasp.sh/wasp-cli@latest
You can install Wasp 0.26 specifically by passing the version to the install script:
npm i -g @wasp.sh/wasp-cli@0.26
What's new in 0.26?
How to migrate?
1. Bump the Wasp version
Update the version field in your Wasp config to ^0.26.0.
- Before
- After
main.wasp.ts
export default app({
wasp: { version: "^0.25.0" },
// ...
});
main.wasp.ts
export default app({
wasp: { version: "^0.26.0" },
// ...
});
And run the following command to update the Wasp libraries in your project:
wasp install
2. Enjoy your updated Wasp app
That's it!