summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2021-05-22 09:33:35 +0200
committerNiels Möller <nisse@lysator.liu.se>2021-05-22 09:33:35 +0200
commit2bc386d607de2750d77787347a4ed8e25487de88 (patch)
tree4d56d9f0a6bf741ddf4cdb1000cceba45801a74d
parent0ad0b5df315665250dfdaa4a1e087f4799edaefe (diff)
downloadnettle-2bc386d607de2750d77787347a4ed8e25487de88.tar.gz
Bump version numbers for nettle-3.7.3.
* configure.ac: Bump package version, to 3.7.3. (LIBNETTLE_MINOR): Bump minor number, to 8.4. (LIBHOGWEED_MINOR): Bump minor number, to 6.4.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 72929118..4787cff6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-05-22 Niels Möller <nisse@lysator.liu.se>
+
+ * configure.ac: Bump package version, to 3.7.3.
+ (LIBNETTLE_MINOR): Bump minor number, to 8.4.
+ (LIBHOGWEED_MINOR): Bump minor number, to 6.4.
+
2021-05-17 Niels Möller <nisse@lysator.liu.se>
* rsa-decrypt-tr.c (rsa_decrypt_tr): Check up-front that input is
diff --git a/configure.ac b/configure.ac
index 9b2c153b..f4d9e905 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.2], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.7.3], [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=3
+LIBNETTLE_MINOR=4
LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=3
+LIBHOGWEED_MINOR=4
dnl Note double square brackets, for extra m4 quoting.
MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`