mirror of
https://github.com/semver/semver.git
synced 2026-07-10 19:50:47 -05:00
[GH-ISSUE #852] Should you use alpha/beta in a 0.y.z version? #4796
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @katistix on GitHub (Jul 8, 2022).
Original GitHub issue: https://github.com/semver/semver/issues/852
I have a project currently on 0.2.2. After adding some features it will increment to 0.3.0, but the current available version is not complete. (To be more precise, it's an API where you can upload and delete files on a server) but right now you can only upload. I see the upload/remove as a SINGLE feature.
Can I release the current version under 0.3.0-alpha.1 to signal the fact that it is feature incomplete? Or is the alpha just for versions 1.0.0 and above?
@ljharb commented on GitHub (Jul 8, 2022):
Yes, you can.
@katistix commented on GitHub (Jul 8, 2022):
Thanks
@Nixinova commented on GitHub (Jul 8, 2022):
You can do whatever you want with pre-release tags. Pre/post-1.0 doesn't mean anything in this case.