From: Niels Möller Date: Sun, 7 May 2023 14:26:45 +0000 (+0200) Subject: Update version numbers for Nettle-3.9. X-Git-Tag: nettle_3.9_release_20230514~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f32bce28046d3d6f17f5667bb3b64dc3fa7e996;p=thirdparty%2Fnettle.git Update version numbers for Nettle-3.9. --- diff --git a/ChangeLog b/ChangeLog index 68c74573..8189a272 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2023-05-07 Niels Möller + + * configure.ac: Bump package version, to 3.9. + (LIBNETTLE_MINOR): Bump minor number, to 8.7 (8.6 was used for + Nettle-3.8.1). + (LIBHOGWEED_MINOR): Bump minor number, to 6.7. + 2023-04-25 Niels Möller Rework tests of SIV message functions. diff --git a/configure.ac b/configure.ac index fa3d8cee..1466d74c 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.9], [nettle-bugs@lists.lysator.liu.se]) AC_PREREQ(2.61) AC_CONFIG_SRCDIR([nettle-types.h]) # 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=7 LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=5 +LIBHOGWEED_MINOR=7 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`