From: Niels Möller Date: Sat, 14 Dec 2024 19:28:44 +0000 (+0100) Subject: Update version numbers for nettle-3.10.1. X-Git-Tag: nettle_3.10.1_release_20241230~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=700f77cd9a654d64a485fa84b59dc46cdd785a10;p=thirdparty%2Fnettle.git Update version numbers for nettle-3.10.1. --- diff --git a/ChangeLog b/ChangeLog index 83d4c982..410f3c39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-12-14 Niels Möller + + * configure.ac: Bump package version, to 3.10.1. + (LIBNETTLE_MINOR): Bump minor number, to 8.10. + (LIBHOGWEED_MINOR): Bump minor number, to 6.10. + 2024-12-13 Niels Möller * aclocal.m4 (NETTLE_PROG_VALGRIND): Check if executable appears diff --git a/configure.ac b/configure.ac index 1f53a890..7c003bb7 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.10], [nettle-bugs@lists.lysator.liu.se]) +AC_INIT([nettle], [3.10.1], [nettle-bugs@lists.lysator.liu.se]) AC_PREREQ([2.69]) 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_HEADERS([config.h]) LIBNETTLE_MAJOR=8 -LIBNETTLE_MINOR=9 +LIBNETTLE_MINOR=10 LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=9 +LIBHOGWEED_MINOR=10 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`