]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Bump version numbers.
authorNiels Möller <nisse@lysator.liu.se>
Wed, 20 Jan 2016 18:15:32 +0000 (19:15 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Wed, 20 Jan 2016 18:15:32 +0000 (19:15 +0100)
ChangeLog
configure.ac

index a904b74935f283ef729c0a089c37faf937f87643..c8f3192617444721f580945a1e1b7b287b9fd170 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,10 @@
 
        * testsuite/Makefile.in (clean): Delete dlopen-test.
 
+       * configure.ac: Bump package version, to nettle-3.2.
+       (LIBNETTLE_MINOR, LIBHOGWEED_MINOR): Bump minor versions, to
+       libnettle.so.6.2 and and libhogweed.so.4.2.
+
 2016-01-10  Niels Möller  <nisse@lysator.liu.se>
 
        * base64-encode.c (encode_raw): Use const uint8_t * for the
index b1ec806a6986ca97288101943b3ef710e2d9a8f0..3d804dbf5e97e92ce16ff47cce51002af18ad2d0 100644 (file)
@@ -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.1.1], [nettle-bugs@lists.lysator.liu.se])
+AC_INIT([nettle], [3.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=6
-LIBNETTLE_MINOR=1
+LIBNETTLE_MINOR=2
 
 LIBHOGWEED_MAJOR=4
-LIBHOGWEED_MINOR=1
+LIBHOGWEED_MINOR=2
 
 dnl Note double square brackets, for extra m4 quoting.
 MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's/^\([[^.]]*\)\..*/\1/'`