-
Notifications
You must be signed in to change notification settings - Fork 16
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
Can use use semver metadata/pre-release for Crates.io #1
Comments
You're right in that I can use the semver metadata field. I wrote that line based on this excerpt from the Cargo book:
My reasoning was that I want |
That makes sense. If you publish version pre-release may be a better fit. |
I just changed the release model to use the prerelease tags as you suggested @Eh2406. Thanks for the help! |
In the readme:
With an example of
"nightly-2023-04-12-v0.1.4"
, which is not a valid semver version. But"0.1.4+nightly-2023-04-12"
is a valid semver using the metadata part of semver. Or"0.1.4-nightly-2023-04-12"
using the pre-release part of semver. https://regex101.com/r/DTge1n/1The text was updated successfully, but these errors were encountered: