summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2013-04-25 09:15:00 +0200
committerNiels Möller <nisse@lysator.liu.se>2013-04-25 09:15:00 +0200
commit2b49c1792d48a99eff57a01bf31a8f5e765115c4 (patch)
tree3fb4bb84f040b4000982de5d6a5ae052aa40505a
parent52052ebb1e02e669229ee37daa1a908d4c95c29f (diff)
downloadnettle-2b49c1792d48a99eff57a01bf31a8f5e765115c4.tar.gz
Increase version number, to 2.8, and bump nettle library major number to 5.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d40933cb..db3ed0e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2013-04-25 Niels Möller <nisse@lysator.liu.se>
+ * configure.ac: Changed version number, to 2.8.
+ (LIBNETTLE_MAJOR): Bumped major number, following
+ nettle_memxor ABI break.
+ (LIBNETTLE_MINOR): Reset to zero.
+
* examples/hogweed-benchmark.c: Add benchmarking of OpenSSL's RSA
functions.
(all functions): Deleted unneeded casts.
diff --git a/configure.ac b/configure.ac
index 7509ee62..a4109276 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], [2.7], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [2.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.
@@ -10,8 +10,8 @@ AC_CONFIG_AUX_DIR([.])
AC_CONFIG_HEADER([config.h])
-LIBNETTLE_MAJOR=4
-LIBNETTLE_MINOR=6
+LIBNETTLE_MAJOR=5
+LIBNETTLE_MINOR=0
LIBHOGWEED_MAJOR=2
LIBHOGWEED_MINOR=4