-
Notifications
You must be signed in to change notification settings - Fork 137
Bump version to 0.20.0 #390
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
base: main
Are you sure you want to change the base?
Conversation
Just a friendly remainder that this might break things #388 (comment), we probably want |
This is minor version bump already. But don't merge it either. I'm trying to test downstream repo like media and servo. I'll open companion PRs to test their CIs too. |
I can make a really small pr to change it back if that's what you want; didn't see your comment until just now and I agree. PR is here: #391 |
Signed-off-by: Wu Yu Wei <[email protected]>
Signed-off-by: Wu Yu Wei <[email protected]>
@@ -267,7 +267,7 @@ impl OsIpcReceiver { | |||
let mut os_result; | |||
let mut name; | |||
loop { | |||
name = format!("{}{}", BOOTSTRAP_PREFIX, rand::rng().random::<i64>()); | |||
name = format!("{}{}", BOOTSTRAP_PREFIX, rand::thread_rng().gen::<i64>()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I forgot the reason but it's something related to servo's tidy iirc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably duplicated package version because we have rand 0.8.5 in servo: https://github.com/servo/servo/blob/539ca272843bd0937bc7ed48d6103a6338d2a3c9/Cargo.lock#L5875
No description provided.