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
https://github.com/achesak/nim-gitapi/blob/master/gitapi.nim
I reckon version = last git tag + (if tag isn't at head: short commit hash)
Probably needs to go in the nimble build script.
At the moment it's easy for the version number and the tag to diverge, and for PRs to fight over version numbers.
The text was updated successfully, but these errors were encountered:
Hmm, semver-compare as used in nativegate treats version numbers with extra alphanumeric bits as smaller than ones without:
semver-compare
nativegate
> cmp("0.1.1d", "0.1.1") -1
So we'll probably need to increment the last digit of the git tag.
Sorry, something went wrong.
Considering semver-compare is only 13 lines of code, it shouldn't be too hard to roll our own that does what we want.
I was thinking of the backwards compatibility.
I suppose it doesn't matter if we're adding new things to Tridactyl.
No branches or pull requests
https://github.com/achesak/nim-gitapi/blob/master/gitapi.nim
I reckon version = last git tag + (if tag isn't at head: short commit hash)
Probably needs to go in the nimble build script.
At the moment it's easy for the version number and the tag to diverge, and for PRs to fight over version numbers.
The text was updated successfully, but these errors were encountered: