summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-01-26 17:04:26 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-01-26 17:04:26 +0000
commit930e008f494dfa6bafd48914cadb97f0ffd8ca76 (patch)
tree49b7cd1934709ef80774bea2a84382942a2423aa
parent20ee0b9cb742347c701829c2ee8be8614349de49 (diff)
downloadmpfr-930e008f494dfa6bafd48914cadb97f0ffd8ca76.tar.gz
Updated the version on the trunk.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5893 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.texi6
-rw-r--r--version.c2
6 files changed, 11 insertions, 11 deletions
diff --git a/INSTALL b/INSTALL
index f1b75f8ae..a59cab167 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.4.0/patches
+ wget http://www.mpfr.org/mpfr-2.5.0/patches
patch -N -Z -p1 < patches
or
- curl http://www.mpfr.org/mpfr-2.4.0/patches | patch -N -Z -p1
+ curl http://www.mpfr.org/mpfr-2.5.0/patches | patch -N -Z -p1
3. In the MPFR directory, to detect your system, type:
./configure
@@ -154,7 +154,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.4.0/>,
+ * the MPFR web page for this version <http://www.mpfr.org/mpfr-2.5.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 a724a9cd9..69fa96814 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.0-dev
+2.5.0-dev
diff --git a/configure.in b/configure.in
index 7621f867b..6f56f2c22 100644
--- a/configure.in
+++ b/configure.in
@@ -23,7 +23,7 @@ MA 02110-1301, USA.
])
dnl Add check-news when it checks for more than 15 lines
-AC_INIT([MPFR],[2.4.0-dev])
+AC_INIT([MPFR],[2.5.0-dev])
AM_INIT_AUTOMAKE([1.10.1 no-define dist-bzip2 dist-lzma dist-zip])
dnl AM_MAINTAINER_MODE(enable)
diff --git a/mpfr.h b/mpfr.h
index 97b8ea6d7..b74500758 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 4
+#define MPFR_VERSION_MINOR 5
#define MPFR_VERSION_PATCHLEVEL 0
-#define MPFR_VERSION_STRING "2.4.0-dev"
+#define MPFR_VERSION_STRING "2.5.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 ba876fe55..fe8675302 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.4.0-dev
+@set VERSION 2.5.0-dev
@set UPDATED-MONTH January 2009
@settitle GNU MPFR @value{VERSION}
@synindex tp fn
@@ -408,7 +408,7 @@ specific to MPFR). Problems are also mentioned in the FAQ
Please report problems to @samp{mpfr@@loria.fr}.
@xref{Reporting Bugs}.
Some bug fixes are available on the
-MPFR 2.4.0 web page @url{http://www.mpfr.org/mpfr-2.4.0/}.
+MPFR 2.5.0 web page @url{http://www.mpfr.org/mpfr-2.5.0/}.
@section Getting the Latest Version of MPFR
@@ -423,7 +423,7 @@ The latest version of MPFR is available from
@comment Warning! Do not split "MPFR ... @url{...}" across several lines
@comment as this needs to be updated with update-version.
If you think you have found a bug in the MPFR library, first have a look
-on the MPFR 2.4.0 web page @url{http://www.mpfr.org/mpfr-2.4.0/} and the
+on the MPFR 2.5.0 web page @url{http://www.mpfr.org/mpfr-2.5.0/} and the
FAQ @url{http://www.mpfr.org/faq.html}:
perhaps this bug is already known, in which case you may find there
a workaround for it. Otherwise, please investigate and report it.
diff --git a/version.c b/version.c
index 84a11e377..95ceb58a2 100644
--- a/version.c
+++ b/version.c
@@ -25,5 +25,5 @@ MA 02110-1301, USA. */
const char *
mpfr_get_version (void)
{
- return "2.4.0-dev";
+ return "2.5.0-dev";
}