You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The intended use case is for taking a pre-release build and making it "official" (de-pre it).
Say you've built my-pkg/1.2.3-pre.1 and after testing you're happy with it and want to make it my-pkg/1.2.3. You could update the version and rebuild the package, but this introduces uncertainty that you'll get a build again that matches what you were testing before. For example, since the build environment is re-solved you could end up with different versions of your build dependencies and end up with a different binary.
A version rename tool could be used improperly in all sorts of ways, but it is the best way to accomplish this specific use case. There was a request to be able to rename from one pre-release version to another pre-release version because it was causing problems. There will always be odd ball use cases that look like they could be dangerous in general but would be safe in some circumstances.
The text was updated successfully, but these errors were encountered:
The intended use case is for taking a pre-release build and making it "official" (de-pre it).
Say you've built
my-pkg/1.2.3-pre.1
and after testing you're happy with it and want to make itmy-pkg/1.2.3
. You could update the version and rebuild the package, but this introduces uncertainty that you'll get a build again that matches what you were testing before. For example, since the build environment is re-solved you could end up with different versions of your build dependencies and end up with a different binary.A version rename tool could be used improperly in all sorts of ways, but it is the best way to accomplish this specific use case. There was a request to be able to rename from one pre-release version to another pre-release version because it was causing problems. There will always be odd ball use cases that look like they could be dangerous in general but would be safe in some circumstances.
The text was updated successfully, but these errors were encountered: