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
In the last release #110 the PREVIOUS_VERSION was detected to be v3.0.7 where it should have been 3.1.0.
PREVIOUS_VERSION
v3.0.7
3.1.0
We are using git tag -l to fetch the tags and get the previous version. This approach might fail because of two reasons:
git tag -l
3.0.7
v
See t4d-gmbh/stubbed_versioning#104 for how these two points can be addressed.
The text was updated successfully, but these errors were encountered:
j-i-l
Successfully merging a pull request may close this issue.
In the last release #110 the
PREVIOUS_VERSION
was detected to bev3.0.7
where it should have been3.1.0
.We are using
git tag -l
to fetch the tags and get the previous version. This approach might fail because of two reasons:git tag -l
returns a list in lexicographical order, thus a .12 would appear before a .2.3.0.7
the tags had the prefixv
, sov3.0.7
, which moves all of these tags at the bottom of the list.See t4d-gmbh/stubbed_versioning#104 for how these two points can be addressed.
The text was updated successfully, but these errors were encountered: