Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Next
function declarations to a separate file (#454, thanks @gsnw-sebast)
- Avoid crash with option `-0` (#457, thanks @auerswal)
- Move option parsing to a separate file fping.c and fping.h (#458, thanks @gsnw-sebast)
- ci: Update autoconf to version 2.73 (#467, thanks @gsnw-sebast)

fping 5.5 (2025-12-31)
======================
Expand Down
2 changes: 1 addition & 1 deletion ci/build-1-autotools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ MIRRORS=(
https://ftp.gnu.org/gnu
)

AUTOCONF_REL=autoconf/autoconf-2.72.tar.gz
AUTOCONF_REL=autoconf/autoconf-2.73.tar.gz
AUTOMAKE_REL=automake/automake-1.18.1.tar.gz
LIBTOOL_REL=libtool/libtool-2.5.4.tar.gz
Comment on lines +18 to 20
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve maintainability, consider defining the tool versions in separate variables. This makes it easier to see all versions at a glance and simplifies future updates.

Suggested change
AUTOCONF_REL=autoconf/autoconf-2.73.tar.gz
AUTOMAKE_REL=automake/automake-1.18.1.tar.gz
LIBTOOL_REL=libtool/libtool-2.5.4.tar.gz
AUTOCONF_VERSION=2.73
AUTOMAKE_VERSION=1.18.1
LIBTOOL_VERSION=2.5.4
AUTOCONF_REL=autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz
AUTOMAKE_REL=automake/automake-${AUTOMAKE_VERSION}.tar.gz
LIBTOOL_REL=libtool/libtool-${LIBTOOL_VERSION}.tar.gz


Expand Down
Loading