File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55
66## Unreleased
77
8+ ## [ 0.19.4] - 2025-06-17
9+
10+ ### Fixed
11+
12+ - "move manifest validation later in the preparation to harden against possible cargo changes
13+
14+
815## [ 0.19.3] - 2025-06-17
916
1017### Added
Original file line number Diff line number Diff line change 11[package ]
22name = " rustwide"
3- version = " 0.19.3 "
3+ version = " 0.19.4 "
44edition = " 2018"
55build = " build.rs"
66
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ impl<'a> Prepare<'a> {
3535
3636 pub ( crate ) fn prepare ( & mut self ) -> anyhow:: Result < ( ) > {
3737 self . krate . copy_source_to ( self . workspace , self . source_dir ) ?;
38- self . validate_manifest ( ) ?;
3938 self . remove_override_files ( ) ?;
4039 self . tweak_toml ( ) ?;
40+ self . validate_manifest ( ) ?;
4141 self . capture_lockfile ( ) ?;
4242 self . fetch_deps ( ) ?;
4343
You can’t perform that action at this time.
0 commit comments