You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, we use cargo --version to check the version, hence if we release a 1.67.0.1 and the user runs espup update, cargo --version will also output 1.67.0. I added a warn message to let the user know this.
Motivations
At the moment, we use
cargo --version
to check the version, hence if we release a1.67.0.1
and the user runsespup update
,cargo --version
will also output1.67.0
. I added a warn message to let the user know this.Solution
Starting from
1.68.0.0
, we added a release description inrustc
that contains the full extended semver. We should use this to check the installed version, so we know for sure if we have the same version installed or not.See esp-rs/rust-build#194
The text was updated successfully, but these errors were encountered: