From: Niels Möller Date: Tue, 26 Jul 2022 18:31:48 +0000 (+0200) Subject: Update version numbers for nettle-3.8.1. X-Git-Tag: nettle_3.8.1_release_20220727~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83f68e9d998119eb0e7468114ba893948dfbe6bd;p=thirdparty%2Fnettle.git Update version numbers for nettle-3.8.1. --- diff --git a/ChangeLog b/ChangeLog index cbfba798..0cc041b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2022-07-26 Niels Möller + + * configure.ac: Bump package version, to 3.8.1. + (LIBNETTLE_MINOR): Bump minor number, to 8.6. + (LIBHOGWEED_MINOR): Bump minor number, to 6.6. + 2022-06-12 Niels Möller From Christian Weisgerber: diff --git a/configure.ac b/configure.ac index 73c6fc21..356cab65 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl -*- mode: shell-script; sh-indentation: 2; -*- dnl Process this file with autoconf to produce a configure script. -AC_INIT([nettle], [3.8], [nettle-bugs@lists.lysator.liu.se]) +AC_INIT([nettle], [3.8.1], [nettle-bugs@lists.lysator.liu.se]) AC_PREREQ(2.61) AC_CONFIG_SRCDIR([arcfour.c]) # Needed to stop autoconf from looking for files in parent directories. @@ -11,10 +11,10 @@ AC_CONFIG_AUX_DIR([.]) AC_CONFIG_HEADER([config.h]) LIBNETTLE_MAJOR=8 -LIBNETTLE_MINOR=5 +LIBNETTLE_MINOR=6 LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=5 +LIBHOGWEED_MINOR=6 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`