summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2021-02-13 17:37:00 +0100
committerNiels Möller <nisse@lysator.liu.se>2021-02-13 17:37:00 +0100
commit10148253852593aeecd4482435dc488de9d9a0ae (patch)
treea08b4ccfb72724eb2881e6205a2e83395082a869
parent64837b2e433e2b99b893683949bad3a99acab38f (diff)
downloadnettle-10148253852593aeecd4482435dc488de9d9a0ae.tar.gz
Increase version numbers, for Nettle-3.7.1.
* configure.ac: Bump package version, to 3.7.1. (LIBNETTLE_MINOR): Bump minor number, to 8.2. (LIBHOGWEED_MINOR): Bump minor number, to 6.2.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index aecc06f0..845bd783 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-02-13 Niels Möller <nisse@lysator.liu.se>
+
+ * configure.ac: Bump package version, to 3.7.1.
+ (LIBNETTLE_MINOR): Bump minor number, to 8.2.
+ (LIBHOGWEED_MINOR): Bump minor number, to 6.2.
+
2021-02-10 Niels Möller <nisse@lysator.liu.se>
* chacha-crypt.c (_nettle_chacha_crypt_4core): Fix for the case
diff --git a/configure.ac b/configure.ac
index 763df3b5..93ba4fba 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], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.7.1], [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=1
+LIBNETTLE_MINOR=2
LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=1
+LIBHOGWEED_MINOR=2
dnl Note double square brackets, for extra m4 quoting.
MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`