You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we use git describe to get the version. Sometimes this can return the earlier version if the last annotated tag is older and the newer tags were not annotated.
By default (without --all or --tags) git describe only shows annotated tags.
Tag objects (created with -a, -s, or -u) are called "annotated" tags; they contain a creation date, the tagger name and e-mail, a tagging message, and an optional GnuPG signature. Whereas a "lightweight" tag is simply a name for an object (usually a commit object).
Using --tags switch will return the last reachable tag irrespective of annotated or not which would be a better indication of the current version of Tribler.
Right now, we use
git describe
to get the version. Sometimes this can return the earlier version if the last annotated tag is older and the newer tags were not annotated.At the current commit of main:
Using
--tags
switch will return the last reachable tag irrespective of annotated or not which would be a better indication of the current version of Tribler.Expected changes in:
build_*.yml
)References:
The text was updated successfully, but these errors were encountered: