Notably:
- Fixed issue where some errors were not being reported (e.g. cargo msrv verify did not print an error if it wasn't possible to resolve the MSRV to check against). {✨ Thanks @Marcono1234}
Full Changelog: v0.16.0-beta.23...v0.16.0-beta.24
Known issues
- The CLI arguments
--features,--all-features,--no-default-features,--min,--max,--include-all-patch-releasesand--release-sourceare ignored when provided to theverifysubcommand. Workaround: supply these arguments directly to the top-level command, e.g.cargo msrv --all-features verify. - The CLI arguments
--targetand--add-componentcan be provided to both the top-levelcargo msrvcommand, and thecargo msrv verifysubcommand, however if they're provided to both, then only the arguments of the subcommand are considered. Example:cargo msrv --target x --add-component a --add-component b verify --target y --add-component c --add-component ddoes not reject or collect the--target x --add-component a --add-component bportion; the program will only be aware of the--target y --add-component c --add-component darguments. - The CLI arguments
--targetand--add-componentare shown to be available globally (i.e. both at the top levelcargo msrvcommand and at the subcommand level, e.g.cargo msrv verify), even for subcommands which do not consume these arguments likecargo msrv list.