prepare v4.4

v4.x v4.4
David Schweikert 4 years ago
parent 57061af2be
commit 430af7803a

@ -1,7 +1,8 @@
fping 4.4 (unreleased)
fping 4.4 (2020-07-24)
======================
## Bugfixes and other changes
- Fix wrong ident used for normal (non-unprivileged) pings (#191, thanks @tycho)
- Fix build with --disable-ipv6 (#187, thanks Polynomial-C)
fping 4.3 (2020-07-11)

@ -11,8 +11,8 @@ set -e
#fi
# do this only for the master and version3 branch
if [ "$TRAVIS_BRANCH" != "master" -a "$TRAVIS_BRANCH" != "version3" ]; then
echo "skipped upload branch $TRAVIS_BRANCH isn't master/version3"
if [ "$TRAVIS_BRANCH" != "master" -a "$TRAVIS_BRANCH" != "v4.x" ]; then
echo "skipped upload branch $TRAVIS_BRANCH isn't master or v4.x"
exit 0
fi

@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl Minimum Autoconf version required.
AC_PREREQ(2.59)
AC_INIT([fping],[4.3])
AC_INIT([fping],[4.4])
AC_GNU_SOURCE
dnl --disable-ipv4

Loading…
Cancel
Save