]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Bump version number for nettle-4.0, to prepare for breaking changes.
authorNiels Möller <nisse@lysator.liu.se>
Wed, 5 Mar 2025 08:45:06 +0000 (09:45 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Wed, 5 Mar 2025 08:45:06 +0000 (09:45 +0100)
ChangeLog
configure.ac

index 462dcf72bb5bbb2f63c8a3dde73760e3927d7b49..2e2a9baa01e1a9c2b9edb93278c640844417ef4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2025-03-05  Niels Möller  <nisse@lysator.liu.se>
+
+       * 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  <nisse@lysator.liu.se>
 
        * powerpc64/p8/gcm-aes-decrypt.asm: Avoid using lxvb16x
index 7c003bb7c7555c7f18aa17a611793652e69ea2fa..169279fd75aaed02662bbd1f7a99197c300b04af 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], [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/'`