-
Notifications
You must be signed in to change notification settings - Fork 60
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 1.0 #244
Comments
Can you articulate why depending on a non-1.0 dependency blocks us from releasing a 1.0? I'm not aware of why it would. |
A bigger thing that I might be worried about before 1.0 is making the data types opaque. Currently they are all just aliases for Vec. So that we can do things like: https://github.com/georust/geojson/pull/222/files#diff-b1a35a68f14e696205874893c07fd24fdb88882b47c23cc0e0c80a30c7d53759L427 |
Firstly, semantic version lawyering is not my strong suit, but in a moment of synchronicity, I may have answered my own question, when it was asked differently in another context: pka/http-range-client#8 (comment) Since Technically anything goes when you're 0.y.z,
But I'm comfortable betting on the geo-types is a little tricker. Since we're implementing traits on geo-types, it's part of our public API, so semver breakage in geo-types means breakage in geojson (right?). Although geo-types isn't yet 1.0, like So if we want to release geojson 1.0 before geo-types 1.0 (which we could), geojson would get an extra major version bump if/when geo-types finally ever gets to 1.0. |
I thought I would find some better list than this but I think the rule is that all your dependencies need to be 1.0, even if they are not public facing. I could be very wrong on this though. Imaging that Releasing a 1.0 for
That could make sense yeah. I'm a bit mixed on the situation of depending on non stable crates in a stable crate. I'll try to find more information of the communities opinion on that. |
Found the reference! https://rust-lang.github.io/api-guidelines/necessities.html#c-stable btw, the reason is that I want to create a crate based on this and though: Hey! this could be come stable pretty quickly! After all, this migth be more a geo-types discussion, first and foremost :) |
My read of this is we don't need to worry about
WRT to a dependency bumping MSRV specifically: It's true — that could break someone's build. Much ink has been spilled on whether MSRV bumps should result in bumping your library's major version. I see both sides, but agree with the majority - namely that MSRV should not constitute a breaking release: rust-lang/api-guidelines#231 So I think geo-types is the only relevant dependency in terms of 1.0. |
It seems this crate can be thought of as "done" as it implements a spec. Are there any blockers that would need to be done before this can reach 1.0?
I think log and geo_types are both blockers because they are not 1.0 yet.
The text was updated successfully, but these errors were encountered: