Update changelog, bump version to 5.8.0-RC0.
[collectd.git] / version-gen.sh
1 #!/bin/sh
2
3 DEFAULT_VERSION="5.8.0-RC0.git"
4
5 if [ -d .git ]; then
6         VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
7 fi
8
9 if test -z "$VERSION"; then
10         VERSION="$DEFAULT_VERSION"
11 fi
12
13 printf "%s" "$VERSION"