summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2022-05-20 20:14:21 +0200
committerNiels Möller <nisse@lysator.liu.se>2022-05-20 20:14:21 +0200
commitbff9a6053166b2f6463f200af300c119854dfd18 (patch)
tree1277769c00f2f2c6fd0f2317558b8d977f0faab0
parentcbcba370e6206e516b49bf25fef75f2873d6ef85 (diff)
downloadnettle-bff9a6053166b2f6463f200af300c119854dfd18.tar.gz
Update version numbers, for nettle-3.8.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 47834c23..f0278110 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-05-20 Niels Möller <nisse@lysator.liu.se>
+
+ * configure.ac: Bump package version, to 3.8.
+ (LIBNETTLE_MINOR): Bump minor number, to 8.5.
+ (LIBHOGWEED_MINOR): Bump minor number, to 6.5.
+
2022-05-05 Niels Möller <nisse@lysator.liu.se>
* nettle.texinfo (CBC): Document cbc_aes128_encrypt,
diff --git a/configure.ac b/configure.ac
index 17ba3fe1..73c6fc21 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.7.1], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.8], [nettle-bugs@lists.lysator.liu.se])
AC_PREREQ(2.61)
AC_CONFIG_SRCDIR([arcfour.c])
# 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=2
+LIBNETTLE_MINOR=5
LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=2
+LIBHOGWEED_MINOR=5
dnl Note double square brackets, for extra m4 quoting.
MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`