summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-11-30 11:01:45 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-11-30 11:01:45 +0000
commit88520ac4482da223d3493f8c5de61bc0750afb72 (patch)
tree42c0dcdb0e92ae7164ff4bcdab72c251029f746f
parentdf590f9f9252bbd6f85c6e37c5b625a6028c28fb (diff)
downloadmpfr-88520ac4482da223d3493f8c5de61bc0750afb72.tar.gz
Updated version to 2.4.3-dev.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/2.4@6608 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 d258fa916..73ef26d85 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.2/patches
+ wget http://www.mpfr.org/mpfr-2.4.3/patches
patch -N -Z -p1 < patches
or
- curl http://www.mpfr.org/mpfr-2.4.2/patches | patch -N -Z -p1
+ curl http://www.mpfr.org/mpfr-2.4.3/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.2/>,
+ * the MPFR web page for this version <http://www.mpfr.org/mpfr-2.4.3/>,
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 8e8299dcc..6cdfe8db7 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.2
+2.4.3-dev
diff --git a/configure.in b/configure.in
index d55a2ba83..d45c6bff6 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.2])
+AC_INIT([MPFR],[2.4.3-dev])
dnl Once GNU Automake 1.11 is available on more platforms, remove
dnl the following line, uncomment the next two lines, and remove the
diff --git a/mpfr.h b/mpfr.h
index 74ffbd78e..bd5eb5e68 100644
--- a/mpfr.h
+++ b/mpfr.h
@@ -26,8 +26,8 @@ MA 02110-1301, USA. */
/* Define MPFR version number */
#define MPFR_VERSION_MAJOR 2
#define MPFR_VERSION_MINOR 4
-#define MPFR_VERSION_PATCHLEVEL 2
-#define MPFR_VERSION_STRING "2.4.2"
+#define MPFR_VERSION_PATCHLEVEL 3
+#define MPFR_VERSION_STRING "2.4.3-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 b7311d3a4..f48f667c1 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.2
+@set VERSION 2.4.3-dev
@set UPDATED-MONTH November 2009
@settitle GNU MPFR @value{VERSION}
@synindex tp fn
@@ -414,7 +414,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.2 web page @url{http://www.mpfr.org/mpfr-2.4.2/}.
+MPFR 2.4.3 web page @url{http://www.mpfr.org/mpfr-2.4.3/}.
@section Getting the Latest Version of MPFR
@@ -429,7 +429,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.2 web page @url{http://www.mpfr.org/mpfr-2.4.2/} and the
+on the MPFR 2.4.3 web page @url{http://www.mpfr.org/mpfr-2.4.3/} 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 9b902f023..bf89c658f 100644
--- a/version.c
+++ b/version.c
@@ -25,5 +25,5 @@ MA 02110-1301, USA. */
const char *
mpfr_get_version (void)
{
- return "2.4.2";
+ return "2.4.3-dev";
}