Skip to content

Releases: foresterre/cargo-msrv

cargo-msrv v0.11.1-testing.2

28 Oct 09:34
Compare
Choose a tag to compare
Pre-release
Fix packaging task

cargo-msrv v0.11.1-testing.1

28 Oct 09:03
Compare
Choose a tag to compare
Pre-release
Add debug info to packaging task

cargo-msrv v0.11.0

27 Oct 23:52
Compare
Choose a tag to compare

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 the Cargo.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:

  • The automated builds failed and are omitted from this release, see: #156
  • Fixed in release 0.11.1

cargo-msrv v0.10.0

01 Oct 19:20
Compare
Choose a tag to compare

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

06 Sep 01:25
Compare
Choose a tag to compare

0.9.0 - 2021-09-06

  • cargo-msrv will no longer try to install upcoming, but unreleased, Rust releases

cargo-msrv v0.8.0

30 Jul 00:36
Compare
Choose a tag to compare

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

14 Jun 22:57
Compare
Choose a tag to compare

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

27 May 16:11
Compare
Choose a tag to compare

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

13 May 07:52
Compare
Choose a tag to compare

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

09 Apr 03:58
Compare
Choose a tag to compare

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 (was cargo 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