Guides
Upgrade Klyra version
How to upgrade to newer Klyra versions
-
Check the Releases page for any considerations regarding breaking changes in the new release.
-
Upgrade your Klyra CLI with one of the options below:
klyra upgrade
(available in v0.48.0+) (runs the install script below for you)curl -sSfL https://docs.klyra.dev/install | bash
(Linux and macOS)iwr https://docs.klyra.dev/install-win | iex
(Windows)cargo binstall cargo-klyra
cargo install cargo-klyra
-
Update your project’s Klyra dependencies in
Cargo.toml
:Cargo.toml -
Test that your project works with
cargo check
/klyra run
. -
Finally, redeploy your Klyra app with
klyra deploy
.