summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-07-02 00:41:32 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-07-02 00:41:32 +0000
commitf6a3927825c1c59358a309592925e96faa25288d (patch)
tree3750cf93d0ed45d299c4f4df9711e135053039ac
parent3dd767b0ed73c3f8f67aade1a68465b0fe9efb01 (diff)
downloadmpfr-f6a3927825c1c59358a309592925e96faa25288d.tar.gz
Updated version to 2.4.0-dev.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4607 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--INSTALL6
-rw-r--r--VERSION2
-rw-r--r--configure.in2
-rw-r--r--mpfr.h4
-rw-r--r--mpfr.texi2
-rw-r--r--version.c2
6 files changed, 9 insertions, 9 deletions
diff --git a/INSTALL b/INSTALL
index 67b4de583..2e4a778e1 100644
--- a/INSTALL
+++ b/INSTALL
@@ -13,10 +13,10 @@ MPFR).
2. It is strongly advised to apply the latest patches (if this has
not been done yet), e.g.
- wget http://www.mpfr.org/mpfr-2.3.0/patches
+ wget http://www.mpfr.org/mpfr-2.4.0/patches
patch -N -Z -p1 < patches
or
- curl http://www.mpfr.org/mpfr-2.3.0/patches | patch -N -Z -p1
+ curl http://www.mpfr.org/mpfr-2.4.0/patches | patch -N -Z -p1
3. In the MPFR directory, to detect your system, type:
./configure
@@ -127,7 +127,7 @@ Several documents may help you to solve the problem:
* the FAQ (either the FAQ.html file distributed with MPFR, or the
on-line version <http://www.mpfr.org/faq.html>, which may be more
up-to-date);
- * the MPFR web page for this version <http://www.mpfr.org/mpfr-2.3.0/>,
+ * the MPFR web page for this version <http://www.mpfr.org/mpfr-2.4.0/>,
which lists bugs found in this version and provides some patches.
If the "configure" fails, please check that the C compiler and its
diff --git a/VERSION b/VERSION
index d64a64435..a724a9cd9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.3.0-dev
+2.4.0-dev
diff --git a/configure.in b/configure.in
index ae02bfaaa..9fffa52e5 100644
--- a/configure.in
+++ b/configure.in
@@ -23,7 +23,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.0-dev])
+AC_INIT([MPFR],[2.4.0-dev])
AM_INIT_AUTOMAKE([1.6 no-define dist-zip dist-bzip2])
dnl AM_MAINTAINER_MODE
diff --git a/mpfr.h b/mpfr.h
index 23ae87450..c3558f042 100644
--- a/mpfr.h
+++ b/mpfr.h
@@ -25,9 +25,9 @@ MA 02110-1301, USA. */
/* Define MPFR version number */
#define MPFR_VERSION_MAJOR 2
-#define MPFR_VERSION_MINOR 3
+#define MPFR_VERSION_MINOR 4
#define MPFR_VERSION_PATCHLEVEL 0
-#define MPFR_VERSION_STRING "2.3.0-dev"
+#define MPFR_VERSION_STRING "2.4.0-dev"
/* 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 f9be78536..53736b01b 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.0-dev
+@set VERSION 2.4.0-dev
@set UPDATED-MONTH July 2007
@settitle MPFR @value{VERSION}
@synindex tp fn
diff --git a/version.c b/version.c
index c52dbd4c2..5f57d73c7 100644
--- a/version.c
+++ b/version.c
@@ -25,5 +25,5 @@ MA 02110-1301, USA. */
const char *
mpfr_get_version (void)
{
- return "2.3.0-dev";
+ return "2.4.0-dev";
}