Skip to content
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

Tag and version convention #18815

Closed
l0kod opened this issue Nov 9, 2014 · 1 comment
Closed

Tag and version convention #18815

l0kod opened this issue Nov 9, 2014 · 1 comment

Comments

@l0kod
Copy link
Contributor

l0kod commented Nov 9, 2014

There is currently Git tags prefixes "release-" (old ones I guess) and "0.".
It would probably be more readable to switch to a "v" (or "rust-") prefix for version tags (like for the Linux repository). This way, it's easier to filter version tags (e.g. with "git tag -l v*"). It's especially useful when there is other tags than for version (e.g. local tags).

@edunham
Copy link
Member

edunham commented Aug 17, 2015

@l0kod the current versioning scheme is x.y.z, sometimes suffixed by -alpha or -beta.

Annoyingly, git tag -l uses fnmatch (aka shell globbing) rather than full regex, so the current most concise way to list only the version number tags (no alphas, betas, old release- tags, or local descriptive tags) seems to be git tag -l | grep -v [a-zA-Z]

Do you think that the versioning scheme enstated by the release channels RFC is sufficient to resolve this issue?

@brson brson closed this as completed Aug 22, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants