summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-09-03 23:38:59 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-09-03 23:38:59 +0000
commit8c267bb430f03f9dabd322b49e95e0f9aba0e2fe (patch)
tree5e3c97cb0b0728e63a2d1bf78c085db9b639aeaa
parent47d93152db2ad12e4f19a16acb9b97d159a41428 (diff)
downloadmpfr-8c267bb430f03f9dabd322b49e95e0f9aba0e2fe.tar.gz
Updated version to 2.3.2-rc1 again (the assertion failure in tpow_z
was due to a bug in GMP 4.1.4). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/2.3@5611 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--VERSION2
-rw-r--r--configure.in2
-rw-r--r--mpfr.h2
-rw-r--r--mpfr.texi2
-rw-r--r--version.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 407426090..40b9c9dc9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.3.2-dev
+2.3.2-rc1
diff --git a/configure.in b/configure.in
index 8f8ec0c70..0c96882f1 100644
--- a/configure.in
+++ b/configure.in
@@ -24,7 +24,7 @@ MA 02110-1301, USA.
dnl If MPFR becomes GNU MPFR, change to GNU MPFR in update-version
dnl Add check-news when it checks for more than 15 lines
-AC_INIT([MPFR],[2.3.2-dev])
+AC_INIT([MPFR],[2.3.2-rc1])
AM_INIT_AUTOMAKE([1.10.1 no-define dist-bzip2 dist-lzma dist-zip])
dnl AM_MAINTAINER_MODE
diff --git a/mpfr.h b/mpfr.h
index 022a5c47c..e2feba385 100644
--- a/mpfr.h
+++ b/mpfr.h
@@ -27,7 +27,7 @@ MA 02110-1301, USA. */
#define MPFR_VERSION_MAJOR 2
#define MPFR_VERSION_MINOR 3
#define MPFR_VERSION_PATCHLEVEL 2
-#define MPFR_VERSION_STRING "2.3.2-dev"
+#define MPFR_VERSION_STRING "2.3.2-rc1"
/* Macros dealing with MPFR VERSION */
#define MPFR_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
diff --git a/mpfr.texi b/mpfr.texi
index 390af0df5..3dcb92084 100644
--- a/mpfr.texi
+++ b/mpfr.texi
@@ -2,7 +2,7 @@
@c %**start of header
@setfilename mpfr.info
@documentencoding ISO-8859-1
-@set VERSION 2.3.2-dev
+@set VERSION 2.3.2-rc1
@set UPDATED-MONTH August 2008
@settitle MPFR @value{VERSION}
@synindex tp fn
diff --git a/version.c b/version.c
index 69389d24c..b953c99a8 100644
--- a/version.c
+++ b/version.c
@@ -25,5 +25,5 @@ MA 02110-1301, USA. */
const char *
mpfr_get_version (void)
{
- return "2.3.2-dev";
+ return "2.3.2-rc1";
}