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
5
5
6
6
## Unreleased
7
7
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
+
8
15
## [ 0.19.3] - 2025-06-17
9
16
10
17
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustwide"
3
- version = " 0.19.3 "
3
+ version = " 0.19.4 "
4
4
edition = " 2018"
5
5
build = " build.rs"
6
6
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ impl<'a> Prepare<'a> {
35
35
36
36
pub ( crate ) fn prepare ( & mut self ) -> anyhow:: Result < ( ) > {
37
37
self . krate . copy_source_to ( self . workspace , self . source_dir ) ?;
38
- self . validate_manifest ( ) ?;
39
38
self . remove_override_files ( ) ?;
40
39
self . tweak_toml ( ) ?;
40
+ self . validate_manifest ( ) ?;
41
41
self . capture_lockfile ( ) ?;
42
42
self . fetch_deps ( ) ?;
43
43
You can’t perform that action at this time.
0 commit comments