Right now, tags require the format vX.Y.Z to be considered release tags (other formats don't produce any errors, but are ignored).
Jilu should also accept X.Y.Z, as those are the two most widely used formats to tag releases.
Basically, we should use semver::Version::parse on the tag, and the tag with the leading v stripped and accept the tag as a release tag if it passes the SemVer check.
Right now, tags require the format
vX.Y.Z
to be considered release tags (other formats don't produce any errors, but are ignored).Jilu should also accept
X.Y.Z
, as those are the two most widely used formats to tag releases.Basically, we should use
semver::Version::parse
on the tag, and the tag with the leadingv
stripped and accept the tag as a release tag if it passes the SemVer check.cc: https://github.com/rustic-games/jilu/issues/5#issuecomment-520815076