We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the semver spec allows for a prerelease string as part of the version, e.g. 1.4.2-alpha1, where the alpha1 part is the "prerelease tag".
1.4.2-alpha1
alpha1
the official go semver supports this, in their Version datatype: https://godoc.org/github.com/coreos/go-semver/semver
Version
can we switch over to use the official semver datatype, rather than inventing our own?
the use case here is having plugin repos for prerelease streams, to enable field testing of bug fixes.
The text was updated successfully, but these errors were encountered:
Thanks for raising this feature request, we will consider this.
Sorry, something went wrong.
weieigao
No branches or pull requests
the semver spec allows for a prerelease string as part of the version, e.g.
1.4.2-alpha1
, where thealpha1
part is the "prerelease tag".the official go semver supports this, in their
Version
datatype: https://godoc.org/github.com/coreos/go-semver/semvercan we switch over to use the official semver datatype, rather than inventing our own?
the use case here is having plugin repos for prerelease streams, to enable field testing of bug fixes.
The text was updated successfully, but these errors were encountered: