]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Bump version numbers for Nettle-3.10.2.
authorNiels Möller <nisse@lysator.liu.se>
Wed, 25 Jun 2025 20:06:53 +0000 (22:06 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Wed, 25 Jun 2025 20:06:53 +0000 (22:06 +0200)
ChangeLog
NEWS
configure.ac

index b57e153b8a5a1950773b4bebed18e0ed37bbb88d..f360d613bb9fced0d58f749033fdcd1a9d865ef7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2025-06-25  Niels Möller  <nisse@lysator.liu.se>
+
+       * configure.ac: Bump package version, to 3.10.2.
+       (LIBNETTLE_MINOR): Bump minor number, to 8.11.
+       (LIBHOGWEED_MINOR): Bump minor number, to 6.11.
+
 2025-06-24  Niels Möller  <nisse@lysator.liu.se>
 
        Minimal patch for compilers that require prototypes, e.g., gcc-15.
diff --git a/NEWS b/NEWS
index c7030155093aa13f211fe2f65a8fc7cec4988017..be0e1d147f377d7c1e224267956c6306297d78f5 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,11 @@ NEWS for the Nettle 3.10.2 release
        This is a maintenance release, with only a few bugfixes and
        portability improvements.
 
+       The new version is intended to be fully source and binary
+       compatible with Nettle-3.6. The shared library names are
+       libnettle.so.8.11 and libhogweed.so.6.11, with sonames
+       libnettle.so.8 and libhogweed.so.6.
+
        Bug fixes:
 
        * Fix missing prototypes in getopt.h and getopt.c, affecting
index 0ad58fbd6c84a6bbb1805b550485a2751d64e247..5ae03c421aac98910b38be17ccad29725fb7ff83 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.10.1], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.10.2], [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=10
+LIBNETTLE_MINOR=11
 
 LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=10
+LIBHOGWEED_MINOR=11
 
 dnl Note double square brackets, for extra m4 quoting.
 MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`