summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2020-12-26 16:50:34 +0100
committerNiels Möller <nisse@lysator.liu.se>2020-12-26 16:50:34 +0100
commit371621cf6bb9629be0a81062375a990810100b9d (patch)
tree4397b95bb6dec95b04d78d70418844d8fcab4bd2
parent9a2c200e7db8cd6695be20121dbfbb7bb8cb0622 (diff)
downloadnettle-371621cf6bb9629be0a81062375a990810100b9d.tar.gz
Increase version numbers, for Nettle-3.7.
* configure.ac: Bump package version, to 3.7. (LIBNETTLE_MINOR): Bump minor number, to 8.1. (LIBHOGWEED_MINOR): Bump minor number, to 6.1.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f22a0b7..910e3d68 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2020-12-26 Niels Möller <nisse@lysator.liu.se>
+
+ * configure.ac: Bump package version, to 3.7.
+ (LIBNETTLE_MINOR): Bump minor number, to 8.1.
+ (LIBHOGWEED_MINOR): Bump minor number, to 6.1.
+
2020-12-21 Niels Möller <nisse@lysator.liu.se>
From Mamone Tarsha:
diff --git a/configure.ac b/configure.ac
index 776a9a61..fbb05e19 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.6], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.7], [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=0
+LIBNETTLE_MINOR=1
LIBHOGWEED_MAJOR=6
-LIBHOGWEED_MINOR=0
+LIBHOGWEED_MINOR=1
dnl Note double square brackets, for extra m4 quoting.
MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`