summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-08-27 08:45:05 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-08-27 08:45:05 +0000
commit367fa032741336f4d083ec5b18bb2abe57eb8769 (patch)
tree61f9503a4a088ac687df7a78f0975cee034388f4
parent709a5a85919d09ff693b1e5dc10869755707c54d (diff)
downloadmpfr-367fa032741336f4d083ec5b18bb2abe57eb8769.tar.gz
Updated version to 2.3.2-rc1.
Makefile.am: incremented revision for -version-info. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/2.3@5597 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--Makefile.am2
-rw-r--r--VERSION2
-rw-r--r--configure.in2
-rw-r--r--mpfr.h2
-rw-r--r--mpfr.texi2
-rw-r--r--version.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index 5428b533d..eeb03e898 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,7 +24,7 @@ libmpfr_la_LIBADD = @LIBOBJS@
# 2.1.x -
# 2.2.x 1:x:0
# 2.3.x 2:x:1
-libmpfr_la_LDFLAGS = -version-info 2:1:1
+libmpfr_la_LDFLAGS = -version-info 2:2:1
info_TEXINFOS = mpfr.texi
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";
}