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 ## 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) - Fix build with --disable-ipv6 (#187, thanks Polynomial-C)
fping 4.3 (2020-07-11) fping 4.3 (2020-07-11)

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

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

Loading…
Cancel
Save