Releases: foresterre/cargo-msrv
Releases · foresterre/cargo-msrv
cargo-msrv v0.11.1-testing.2
Fix packaging task
cargo-msrv v0.11.1-testing.1
Add debug info to packaging task
cargo-msrv v0.11.0
0.11.0 - 2021-10-28
- Added
--release-source
which allows users to select a rust-releases source. Thanks @pjsier - A message is now shown to inform users when the index is being updated. Thanks @pjsier
- Verify can now also read and use the
package.rust-version
MSRV key in theCargo.toml
manifest. - When the
package.edition
is set, the first release supporting this edition will now be set as the minimum version.
This behaviour can be disabled by providing the--no-read-min-edition
flag. Thanks @clanghout
NB:
cargo-msrv v0.10.0
0.10.0 - 2021-10-01
- Add option to specify an edition alias instead of a minimum version Thanks @danieleades
cargo-msrv v0.9.0
0.9.0 - 2021-09-06
- cargo-msrv will no longer try to install upcoming, but unreleased, Rust releases
cargo-msrv v0.8.0
0.8.0 - 2021-07-30
- Renamed
--minimum
to--min
while keeping the former as an alias - Renamed
--maximum
to--max
while keeping the former as an alias
Thank you for your contribution(s)
Attach release binaries to every created release #89 Thanks @thomaseizinger
cargo-msrv v0.7.0
0.7.0 - 2021-06-15
- Added command (
--verify
) to verify the MSRV, if defined with the 'package.metadata.msrv' key in the 'Cargo.toml'
cargo-msrv v0.6.0
0.6.0 - 2021-05-27
- Added option (
--output-format
) to output the status of the program in a machine-readable format to stdout Thanks @Lutetium-Vanadium!
cargo-msrv v0.5.0
0.5.0 - 2021-05-13
- Added new flag
--ignore-lockfile
which addresses an issue where newer lockfiles could not be parsed by older toolchains
cargo-msrv v0.4.0
0.4.0 - 2021-04-09
- Added option to only take the latest patch Release version into acount, and make it the default
- Added minimum and maximum release version options, which can be used to restrict the range of version to be checked
- Change default check command to
cargo check -all
(wascargo build --all
) - Add option to output a
rust-toolchain
file - Add option to use a binary search instead of a linear search to find the MSRV