From: Niels Möller Date: Sun, 2 Jun 2024 12:06:48 +0000 (+0200) Subject: Update version numbers for nettle-3.10. X-Git-Tag: nettle_3.10rc1~8 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=6a525b50da5221eb42985bd2b7881a9018797452;p=thirdparty%2Fnettle.git Update version numbers for nettle-3.10. --- diff --git a/ChangeLog b/ChangeLog index 4440af5f..77fba350 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-06-02 Niels Möller + + * configure.ac: Bump package version, to 3.10. + (LIBNETTLE_MINOR): Bump minor number, to 8.9. + (LIBHOGWEED_MINOR): Bump minor number, to 6.9. + 2024-06-01 Niels Möller * eddsa-hash.c (_eddsa_hash): Use NETTLE_OCTET_SIZE_TO_LIMB_SIZE. diff --git a/NEWS b/NEWS index 39a0706c..cc059f69 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ NEWS for the Nettle 3.10 release + This is a maintenance release, including a few each of bug + fixes, new features and optimizations. + + The new version is intended to be fully source and binary + compatible with Nettle-3.6. The shared library names are + libnettle.so.8.9 and libhogweed.so.6.9, with sonames + libnettle.so.8 and libhogweed.so.6. + Bug fixes: * Add missing hash functions sha512_224 and sha512_256 to the @@ -14,7 +22,7 @@ NEWS for the Nettle 3.10 release New features: * Support RSA-OAEP encryption. Contributed by Nicolas Mora and - Daiki Ueno. + Daiki Ueno. * New function sha3_256_shake_output, new functions sha3_128_init, sha3_128_update, sha3_128_shake, @@ -28,11 +36,11 @@ NEWS for the Nettle 3.10 release Danny Tsen. * Improved performance for powerpc64 AES decrypt, by skipping - subkey transformations that don't suit the vncipher - instructions. + subkey transformations that don't suit the vncipher + instructions. * Add arm64 CPU feature detection for Apple systems, - contributed by Tim Kosse. + contributed by Tim Kosse. Miscellaneous: diff --git a/configure.ac b/configure.ac index 7ae99f25..b5427050 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.9.1], [nettle-bugs@lists.lysator.liu.se]) +AC_INIT([nettle], [3.10], [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=8 +LIBNETTLE_MINOR=9 LIBHOGWEED_MAJOR=6 -LIBHOGWEED_MINOR=8 +LIBHOGWEED_MINOR=9 dnl Note double square brackets, for extra m4 quoting. MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`