From: Niels Möller Date: Wed, 17 Mar 2021 16:15:48 +0000 (+0100) Subject: Bump version numbers for nettle-3.7.2. X-Git-Tag: nettle_3.7.2_release_20210321~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48c713b5d8de3a93ae8b6de8eccafdadc15f4e0c;p=thirdparty%2Fnettle.git Bump version numbers for nettle-3.7.2. --- diff --git a/ChangeLog b/ChangeLog index 8a27a9a6..ff0e8019 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2021-03-17 Niels Möller + + * configure.ac: Bump package version, to 3.7.2. + (LIBNETTLE_MINOR): Bump minor number, to 8.3. + (LIBHOGWEED_MINOR): Bump minor number, to 6.3. + 2021-03-13 Niels Möller * gostdsa-vko.c (gostdsa_vko): Use ecc_mod_mul_canonical to @@ -22,6 +28,7 @@ 2021-03-13 Niels Möller * eddsa-verify.c (equal_h): Use ecc_mod_mul_canonical. + 2021-03-11 Niels Möller * ecc-mod-arith.c (ecc_mod_mul_canonical, ecc_mod_sqr_canonical): diff --git a/configure.ac b/configure.ac index 93ba4fba..9b2c153b 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.7.1], [nettle-bugs@lists.lysator.liu.se]) +AC_INIT([nettle], [3.7.2], [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=2 +LIBNETTLE_MINOR=3 LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=2 +LIBHOGWEED_MINOR=3 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`