Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the MSRV to 1.63 #3318

Merged
merged 3 commits into from
Nov 17, 2022
Merged

Bump the MSRV to 1.63 #3318

merged 3 commits into from
Nov 17, 2022

Conversation

Michael-F-Bryan
Copy link
Contributor

We upgraded our dependencies as part of #3254 (9b13fae), which pulled in version 1.2.0 of the derive_arbitrary crate. This requires Rust 1.63 to compile, but our current minimum supported Rust version is 1.61.

This PR bumps our MSRV to match that of derive_arbitrary.

Review

  • Add a short description of the change to the CHANGELOG.md file

- [#2948](https://github.com/wasmerio/wasmer/pull/2948) Fix regression on gen_import_call_trampoline_arm64()
- [#2944](https://github.com/wasmerio/wasmer/pull/2944) Fix duplicate entries in the CHANGELOG
- [#2944](https://github.com/wasmerio/wasmer/pull/2944) Fix duplicate entries in the CHANGELOG

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hunt of the trailling space :P !

write!(f, "host(")?;
p.as_ref().fmt(f)?;
write!(f, ")")
}
MaybeInstanceOwned::Instance(p) => {
Self::Instance(p) => {
write!(f, "instance(")?;
unsafe { p.as_ref().fmt(f)? };
write!(f, ")")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I always forgot to fix thoses one. It's done now, good.

@@ -244,11 +244,11 @@ fn static_host_function_without_env(config: crate::Config) -> anyhow::Result<()>
let mut store = config.store();

fn f(a: i32, b: i64, c: f32, d: f64) -> (f64, f32, i64, i32) {
(d * 4.0, c * 3.0, b * 2, a * 1)
(d * 4.0, c * 3.0, b * 2, a)
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not a fan of the "* 1" removal, as it was here for clarity. Still works, but, meh

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it looks like clippy warns you about redundant multiplies so clippy --fix will "help" out by removing them 😞

Copy link
Contributor

@fschutt fschutt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, just the comments from @ptitSeb, from my side it's ok

@ptitSeb
Copy link
Contributor

ptitSeb commented Nov 17, 2022

bors r+

@bors
Copy link
Contributor

bors bot commented Nov 17, 2022

Build succeeded:

  • Code lint

@bors bors bot merged commit 06d20f7 into master Nov 17, 2022
@bors bors bot deleted the bump-msrv branch November 17, 2022 17:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants