summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-09-13 17:08:30 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-09-13 17:08:30 +0000
commit6b8d4d9676d78a2b015458191ed2053efcb59562 (patch)
treeaf3ad0af8231461f43a030d89cf5045a21f9db96
parentb22a02817c02f03c5bd214fbe6a8ca3f5c4cb9a2 (diff)
downloadmpfr-6b8d4d9676d78a2b015458191ed2053efcb59562.tar.gz
Updated version to 3.1.5-rc1 and updated libmpfr_la_LDFLAGS in
src/Makefile.am for the next release. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/3.1@10866 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--VERSION2
-rw-r--r--configure.ac2
-rw-r--r--doc/mpfr.texi2
-rw-r--r--src/Makefile.am2
-rw-r--r--src/mpfr.h2
-rw-r--r--src/version.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/VERSION b/VERSION
index 86d3e51f8..e821b31fd 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.1.5-dev
+3.1.5-rc1
diff --git a/configure.ac b/configure.ac
index e750a6bc7..a3b21ec8f 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.5-dev])
+AC_INIT([MPFR],[3.1.5-rc1])
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 9d5d11cb8..093909e3c 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.5-dev
+@set VERSION 3.1.5-rc1
@set UPDATED-MONTH March 2016
@settitle GNU MPFR @value{VERSION}
@synindex tp fn
diff --git a/src/Makefile.am b/src/Makefile.am
index fbd077710..1d28bf1ad 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -75,7 +75,7 @@ libmpfr_la_LIBADD = @LIBOBJS@
# 2.4.x 3:x:2
# 3.0.x 4:x:0
# 3.1.x 5:x:1
-libmpfr_la_LDFLAGS = $(MPFR_LDFLAGS) $(LIBMPFR_LDFLAGS) -version-info 5:4:1
+libmpfr_la_LDFLAGS = $(MPFR_LDFLAGS) $(LIBMPFR_LDFLAGS) -version-info 5:5:1
# Important note: If for some reason, srcdir is read-only at build time
# (and you use objdir != srcdir), then you need to rebuild get_patches.c
diff --git a/src/mpfr.h b/src/mpfr.h
index 075d0bf23..f022aee68 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 5
-#define MPFR_VERSION_STRING "3.1.5-dev"
+#define MPFR_VERSION_STRING "3.1.5-rc1"
/* 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 f5d2f12cc..5012dd246 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.5-dev";
+ return "3.1.5-rc1";
}