diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2017-09-05 12:59:09 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2017-09-05 12:59:09 +0000 |
commit | 30e2048b273a3f8ba8dd719c96fa3db923eaf18d (patch) | |
tree | 00bb0f7891a2718c83f476bbcd98d98af80abced | |
parent | d77de17ac6b97da2392f9d90055fef8657c89bec (diff) | |
download | mpfr-30e2048b273a3f8ba8dd719c96fa3db923eaf18d.tar.gz |
Updated version to 3.1.6-rc2 (at least for the developers, so that
intermediate versions with new changes cannot be confused with rc1).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/3.1@11709 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/mpfr.texi | 2 | ||||
-rw-r--r-- | src/mpfr.h | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -1 +1 @@ -3.1.6-rc1 +3.1.6-rc2 diff --git a/configure.ac b/configure.ac index dd465e39d..12c5376b1 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., ]) dnl Add check-news when it checks for more than 15 lines -AC_INIT([MPFR],[3.1.6-rc1]) +AC_INIT([MPFR],[3.1.6-rc2]) dnl Older Automake versions than 1.13 may still be supported, but no longer dnl tested, and many things have changed in 1.13. Moreover the INSTALL file diff --git a/doc/mpfr.texi b/doc/mpfr.texi index acacee5fd..9751a5ee8 100644 --- a/doc/mpfr.texi +++ b/doc/mpfr.texi @@ -2,7 +2,7 @@ @c %**start of header @setfilename mpfr.info @documentencoding UTF-8 -@set VERSION 3.1.6-rc1 +@set VERSION 3.1.6-rc2 @set UPDATED-MONTH August 2017 @settitle GNU MPFR @value{VERSION} @synindex tp fn diff --git a/src/mpfr.h b/src/mpfr.h index 68e84b476..255daec23 100644 --- a/src/mpfr.h +++ b/src/mpfr.h @@ -27,7 +27,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., #define MPFR_VERSION_MAJOR 3 #define MPFR_VERSION_MINOR 1 #define MPFR_VERSION_PATCHLEVEL 6 -#define MPFR_VERSION_STRING "3.1.6-rc1" +#define MPFR_VERSION_STRING "3.1.6-rc2" /* Macros dealing with MPFR VERSION */ #define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) diff --git a/src/version.c b/src/version.c index fa33ce66b..532a7bc58 100644 --- a/src/version.c +++ b/src/version.c @@ -25,5 +25,5 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., const char * mpfr_get_version (void) { - return "3.1.6-rc1"; + return "3.1.6-rc2"; } |