Skip to content

Commit

Permalink
Remove MSRV checks in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Feb 13, 2025
1 parent 54c8bf0 commit c7efe7f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions maintainer/make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,6 @@ for crate in ${crates[@]}; do
fi
done

if ! cargo msrv --help >/dev/null; then
echo "Didn't find \`msrv\` applet of \`cargo\`. Run \`cargo install msrv\` to install it."
exit 1
fi

if ! cargo msrv --min 1.80.1 --max 1.80.1 >/dev/null; then
echo "Minimum supported Rust version doesn't match avertised one."
exit 1
fi

echo ">>> Testing release configuration with default features ..."

cargo test --release
Expand Down

0 comments on commit c7efe7f

Please sign in to comment.