summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--configure.ac2
-rw-r--r--doc/mpfr.texi2
-rw-r--r--src/mpfr.h2
-rw-r--r--src/version.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index e821b31fd..3ad0595ad 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.1.5-rc1
+3.1.5
diff --git a/configure.ac b/configure.ac
index a3b21ec8f..41a3e1750 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-rc1])
+AC_INIT([MPFR],[3.1.5])
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 b46338e23..002edc64d 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-rc1
+@set VERSION 3.1.5
@set UPDATED-MONTH September 2016
@settitle GNU MPFR @value{VERSION}
@synindex tp fn
diff --git a/src/mpfr.h b/src/mpfr.h
index f022aee68..b23b1d2a9 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-rc1"
+#define MPFR_VERSION_STRING "3.1.5"
/* 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 5012dd246..0e24a47f0 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-rc1";
+ return "3.1.5";
}