We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96f0bed commit d4d60dcCopy full SHA for d4d60dc
bash/changelog
@@ -55,8 +55,15 @@ function ::full() {
55
if [ -z "$later_tag" ]; then
56
later_tag="$tag"
57
this_version=$(git describe --tags)
58
+ long_version=$(git describe --tags --long)
59
+ if [ "$this_version" = "$long_version" ]; then
60
+ header_version="Unreleased"
61
+ else
62
+ header_version="$this_version"
63
+ fi
64
+
65
if [ "$this_version" != "$tag" ]; then
- echo "## $this_version"
66
+ echo "## $header_version"
67
echo
68
::fromto "$tag" "HEAD" "$(git::projecturl)" | grep -v '^* ci' | uniq
69
fi
0 commit comments