summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2021-03-17 17:15:48 +0100
committerNiels Möller <nisse@lysator.liu.se>2021-03-17 17:15:48 +0100
commit48c713b5d8de3a93ae8b6de8eccafdadc15f4e0c (patch)
tree74c25c38b5823b7b7208462df8ba7fd290aaa829
parent63f222c60b03470c0005aa9bc4296fbf585f68b9 (diff)
downloadnettle-48c713b5d8de3a93ae8b6de8eccafdadc15f4e0c.tar.gz
Bump version numbers for nettle-3.7.2.
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a27a9a6..ff0e8019 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-03-17 Niels Möller <nisse@lysator.liu.se>
+
+ * configure.ac: Bump package version, to 3.7.2.
+ (LIBNETTLE_MINOR): Bump minor number, to 8.3.
+ (LIBHOGWEED_MINOR): Bump minor number, to 6.3.
+
2021-03-13 Niels Möller <nisse@lysator.liu.se>
* gostdsa-vko.c (gostdsa_vko): Use ecc_mod_mul_canonical to
@@ -22,6 +28,7 @@
2021-03-13 Niels Möller <nisse@lysator.liu.se>
* eddsa-verify.c (equal_h): Use ecc_mod_mul_canonical.
+
2021-03-11 Niels Möller <nisse@lysator.liu.se>
* ecc-mod-arith.c (ecc_mod_mul_canonical, ecc_mod_sqr_canonical):
diff --git a/configure.ac b/configure.ac
index 93ba4fba..9b2c153b 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.7.2], [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=3
LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=2
+LIBHOGWEED_MINOR=3
dnl Note double square brackets, for extra m4 quoting.
MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`