From: Niels Möller Date: Sat, 26 Dec 2020 15:50:34 +0000 (+0100) Subject: Increase version numbers, for Nettle-3.7. X-Git-Tag: nettle_3.7rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=371621cf6bb9629be0a81062375a990810100b9d;p=thirdparty%2Fnettle.git Increase version numbers, for Nettle-3.7. * configure.ac: Bump package version, to 3.7. (LIBNETTLE_MINOR): Bump minor number, to 8.1. (LIBHOGWEED_MINOR): Bump minor number, to 6.1. --- diff --git a/ChangeLog b/ChangeLog index 0f22a0b7..910e3d68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2020-12-26 Niels Möller + + * configure.ac: Bump package version, to 3.7. + (LIBNETTLE_MINOR): Bump minor number, to 8.1. + (LIBHOGWEED_MINOR): Bump minor number, to 6.1. + 2020-12-21 Niels Möller From Mamone Tarsha: diff --git a/configure.ac b/configure.ac index 776a9a61..fbb05e19 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.6], [nettle-bugs@lists.lysator.liu.se]) +AC_INIT([nettle], [3.7], [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=0 +LIBNETTLE_MINOR=1 LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=0 +LIBHOGWEED_MINOR=1 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`