]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Update version numbers for nettle-3.10.
authorNiels Möller <nisse@lysator.liu.se>
Sun, 2 Jun 2024 12:06:48 +0000 (14:06 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Sun, 2 Jun 2024 12:06:48 +0000 (14:06 +0200)
ChangeLog
NEWS
configure.ac

index 4440af5f0f52cdc6723f820fc8eab7454a498b86..77fba350018540be2a1bd5add452674ac466231e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
diff --git a/NEWS b/NEWS
index 39a0706c14005aa113fe13f63a48cfefb80e2a5c..cc059f6931041788e322bd95fb558bf56f8331c2 100644 (file)
--- 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:
 
index 7ae99f25b2ea2f1c2cc03325a67efeef56e8bbbe..b542705064ba9ea71f3fa25b2ffa82af203097a0 100644 (file)
@@ -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/'`