-
Notifications
You must be signed in to change notification settings - Fork 183
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
Release 0.3? #433
Comments
There was a proposal to rename Moreover, we can use this release to relax our MSRV policy in the vein suggested by @briansmith, but this should be done together with
I think it's rarely used directly, usually it's done through
It's possible to do this: [dependencies]
getrandom02 = { version = "0.2", package = "getrandom" }
getrandom = "0.3" And call the registering macros from each crate (assuming |
As @josephlr says, pushing these changes to a I have a slight preference for bumping the version to
|
I understand what you're saying, but in practice it does matter. Many people have their CI set up to reject multiple versions of a dependency by default. so they have to either make an exception to their CI rules, and/or they submit PRs upstream to try to upgrade everybody to the new version, which is extra work for everybody. Then those upstream projects (such as some I maintain) end up having to choose to drop support for 0.2 to help these people, or spend time trying to explain to them (over and over, indefinitely) why it "hardly matters." Either way it ends up being disproportionate amount of effort. If we release 0.3:
|
It would be nice but (a) it can be done in a backward-compatible way by renaming it to I think nonblocking getrandom should be a separate API and so it could be added in a SemVer-capable manner. And/or we could implement the old API in terms of the new API, optionally eventually marking the old API
Better to discuss it in its own issue to reach a decision.
Yes, these are basically bugs that we've deferred fixes for until we make a SemVer-breaking version bump, so we should do this for 0.3. |
I opened #438 and #439 to discuss breaking changes to the API and feature flags respectively. I'm convinced by the arguments above, we should release these changes as a breaking change.
Personally, I think that we should cap the MSRV for the upcoming release at 1.57 (1.56 is Rust 2021, and 1.57 gives us panicking in For 1.0 and onward, we can just say that removing platform support and increasing the MSRV can be done in a minor version, and that:
That way folks can put
I really wouldn't want to bother back-porting changes. I think we could have backports be "contributions welcome". I'd be fine reviewing backports, but I don't want to do the backporting (especially if nobody's actually using it). |
I don't think we should release v1.0, not only because of the MSRV-aware resolver, but also because we will introduce new APIs. There are also potential for new features like "global crate features", which can be quite useful for us. Remember that we always can use the semver trick to release v0.3-compatible v1.0, assuming the APIs stay stable enough.
I agree with this, IIRC we acted similarly with v0.1 backports. |
The main problem with trying to make the next release be 1.0: The release will be long-delayed because there's too much perfecting and too many potential compatibility-breaking changes. I think we need to accept the MSRV increases for 0.2 and do a 0.2 release soon, so that we don't get into a state where we can't do a release because master isn't good enough to be 1.0. |
We have a few changes coming up (#425, #414 , #432) which will make the following changes to the compatibility of this crate:
*-pc-windows-{gnu,msvc}
from Windows Vista (released November 30, 2006) to Windows 10 (released July 15, 2015).x86_64-win7-windows-msvc
andi686-win7-windows-msvc
targets*-win7-*
targets (viaRtlGenRandom
)The Rust Semver Compatibility Guide does not specify if such actions would be breaking changes. Both:
are listed as "Possibly-breaking" changes.
My personal preference would be to release these changes as
0.2.16
(not consider this a breaking change) because:getrandom
is widely used throughout the Rust ecosystem so updating all callers can be somewhat tedious.custom
implementation work with both versions ofgetrandom
.However, if we do decide to have this be a breaking change, we should discuss if there are any other semver-breaking changes we wish to make (see #346 and #230). Another option would just be to get consensus on #232 and release these changes as 1.0
The text was updated successfully, but these errors were encountered: