From: Niels Möller Date: Wed, 5 Mar 2025 08:45:06 +0000 (+0100) Subject: Bump version number for nettle-4.0, to prepare for breaking changes. X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=d18f7a3a42f2f2f3a45c379da19c6447e2cca226;p=thirdparty%2Fnettle.git Bump version number for nettle-4.0, to prepare for breaking changes. --- diff --git a/ChangeLog b/ChangeLog index 462dcf72..2e2a9baa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2025-03-05 Niels Möller + + * configure.ac: Bump version numbers, to prepare for changes that + break API or ABI. Bump package version to 4.0. + (LIBNETTLE_MAJOR, LIBNETTLE_MINOR): Bump, to 9.0. + (LIBHOGWEED_MAJOR, LIBHOGWEED_MINOR): Bump, to 7.0. + 2025-03-02 Niels Möller * powerpc64/p8/gcm-aes-decrypt.asm: Avoid using lxvb16x diff --git a/configure.ac b/configure.ac index 7c003bb7..169279fd 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.1], [nettle-bugs@lists.lysator.liu.se]) +AC_INIT([nettle], [4.0], [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. @@ -10,11 +10,11 @@ AC_CONFIG_AUX_DIR([.]) AC_CONFIG_HEADERS([config.h]) -LIBNETTLE_MAJOR=8 -LIBNETTLE_MINOR=10 +LIBNETTLE_MAJOR=9 +LIBNETTLE_MINOR=0 -LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=10 +LIBHOGWEED_MAJOR=7 +LIBHOGWEED_MINOR=0 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`