summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2023-05-07 16:26:45 +0200
committerNiels Möller <nisse@lysator.liu.se>2023-05-07 16:26:45 +0200
commit8f32bce28046d3d6f17f5667bb3b64dc3fa7e996 (patch)
tree0e51b356724978fdddc98babc04e94c43a7435b9
parent7e288a978e60cf616d3f41413899e2c9d52624c6 (diff)
downloadnettle-8f32bce28046d3d6f17f5667bb3b64dc3fa7e996.tar.gz
Update version numbers for Nettle-3.9.
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 68c74573..8189a272 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-05-07 Niels Möller <nisse@lysator.liu.se>
+
+ * configure.ac: Bump package version, to 3.9.
+ (LIBNETTLE_MINOR): Bump minor number, to 8.7 (8.6 was used for
+ Nettle-3.8.1).
+ (LIBHOGWEED_MINOR): Bump minor number, to 6.7.
+
2023-04-25 Niels Möller <nisse@lysator.liu.se>
Rework tests of SIV message functions.
diff --git a/configure.ac b/configure.ac
index fa3d8cee..1466d74c 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.8], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.9], [nettle-bugs@lists.lysator.liu.se])
AC_PREREQ(2.61)
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_HEADER([config.h])
LIBNETTLE_MAJOR=8
-LIBNETTLE_MINOR=5
+LIBNETTLE_MINOR=7
LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=5
+LIBHOGWEED_MINOR=7
dnl Note double square brackets, for extra m4 quoting.
MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`