From: Niels Möller Date: Thu, 25 Apr 2013 07:15:00 +0000 (+0200) Subject: Increase version number, to 2.8, and bump nettle library major number to 5. X-Git-Tag: nettle_3.0_release_20140607~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b49c1792d48a99eff57a01bf31a8f5e765115c4;p=thirdparty%2Fnettle.git Increase version number, to 2.8, and bump nettle library major number to 5. --- diff --git a/ChangeLog b/ChangeLog index d40933cb..db3ed0e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2013-04-25 Niels Möller + * 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