-
Notifications
You must be signed in to change notification settings - Fork 126
Release 0.14.0 #130
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?
Release 0.14.0 #130
Conversation
Bump rand to 0.9
Relax `Sized` requirements on the rng
src/lib.rs
Outdated
|
|
||
| /// Returns an element chosen uniformly at random using a user-provided RNG. | ||
| fn random(rng: impl RngCore) -> Self; | ||
| fn random<R: RngCore + ?Sized>(rng: &mut R) -> Self; |
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.
This change is blocked on being included in a zkcrypto RFC.
|
CI is failing because changes in |
|
I'm not very familiar with the zkcrypto processes, any chance you could tag and publish a pre-release for 0.14.0? (with #127 preferably). |
|
That's my plan. We do not normally do pre-releases because they are hard to use correctly in general, but given the need to coordinate with RustCrypto I'll be doing so in this instance. And as noted elsewhere, the trait changes in any pre-release builds will not be included in the final release unless they are also in a merged zkcrypto RFC. The pre-release builds we create in this instance should be used for RFC consensus building. |
adds a Field::try_from_rng method
Preview 0.14.0-pre.0
|
RustCrypto have decided to skip This has two main implications:
|
This is a feature branch; PR is open to track the overall 0.14.0 changes.