+2024-06-02 Niels Möller <nisse@lysator.liu.se>
+
+ * 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 <nisse@lysator.liu.se>
* eddsa-hash.c (_eddsa_hash): Use NETTLE_OCTET_SIZE_TO_LIMB_SIZE.
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
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,
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:
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.
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/'`