summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2020-06-12 11:41:27 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2020-06-12 11:41:27 +0000
commit10906692a27c3706d914f342a1d50b0b75da8e4c (patch)
tree95994df8417d305a6e808ae87f6080e660e1d2ee
parentdea4f8dc85399829197d31d1548e6bdd8850f58a (diff)
downloadmpfr-10906692a27c3706d914f342a1d50b0b75da8e4c.tar.gz
Updated version to 4.2.0-dev.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13992 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--INSTALL8
-rw-r--r--VERSION2
-rw-r--r--configure.ac2
-rw-r--r--doc/mpfr.texi2
-rw-r--r--src/mpfr.h4
-rw-r--r--src/version.c2
6 files changed, 10 insertions, 10 deletions
diff --git a/INSTALL b/INSTALL
index f1b6a5ccc..e3966bcaa 100644
--- a/INSTALL
+++ b/INSTALL
@@ -37,17 +37,17 @@ MPFR).
not been done yet and if patches are available. You can check
on the release page:
- https://www.mpfr.org/mpfr-4.1.0/
+ https://www.mpfr.org/mpfr-4.2.0/
which may have additional information. The patches can be applied
with commands like:
- wget https://www.mpfr.org/mpfr-4.1.0/allpatches
+ wget https://www.mpfr.org/mpfr-4.2.0/allpatches
patch -N -Z -p1 < allpatches
or
- curl https://www.mpfr.org/mpfr-4.1.0/allpatches | patch -N -Z -p1
+ curl https://www.mpfr.org/mpfr-4.2.0/allpatches | patch -N -Z -p1
(Those instructions are for the GNU patch command, for example
/usr/bin/gpatch on Solaris.)
@@ -387,7 +387,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 <https://www.mpfr.org/faq.html>, which may be more
up-to-date);
- * the MPFR web page for this version <https://www.mpfr.org/mpfr-4.1.0/>,
+ * the MPFR web page for this version <https://www.mpfr.org/mpfr-4.2.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 4aa925d34..5fb11aa65 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-4.1.0-dev
+4.2.0-dev
diff --git a/configure.ac b/configure.ac
index 0c9ae5849..1054adc0e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,7 +26,7 @@ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
])
dnl Add check-news when it checks for more than 15 lines
-AC_INIT([MPFR],[4.1.0-dev])
+AC_INIT([MPFR],[4.2.0-dev])
dnl Older Automake versions than 1.13 may still be supported, but no longer
dnl tested, and many things have changed in 1.13. Moreover the INSTALL file
diff --git a/doc/mpfr.texi b/doc/mpfr.texi
index d17323558..d75344e0b 100644
--- a/doc/mpfr.texi
+++ b/doc/mpfr.texi
@@ -2,7 +2,7 @@
@c %**start of header
@setfilename mpfr.info
@documentencoding UTF-8
-@set VERSION 4.1.0-dev
+@set VERSION 4.2.0-dev
@set UPDATED-MONTH April 2020
@settitle GNU MPFR @value{VERSION}
@synindex tp fn
diff --git a/src/mpfr.h b/src/mpfr.h
index d7f255903..ef5e8ee42 100644
--- a/src/mpfr.h
+++ b/src/mpfr.h
@@ -25,9 +25,9 @@ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
/* Define MPFR version number */
#define MPFR_VERSION_MAJOR 4
-#define MPFR_VERSION_MINOR 1
+#define MPFR_VERSION_MINOR 2
#define MPFR_VERSION_PATCHLEVEL 0
-#define MPFR_VERSION_STRING "4.1.0-dev"
+#define MPFR_VERSION_STRING "4.2.0-dev"
/* User macros:
MPFR_USE_FILE: Define it to make MPFR define functions dealing
diff --git a/src/version.c b/src/version.c
index 998f1cf1a..eaa5f4514 100644
--- a/src/version.c
+++ b/src/version.c
@@ -25,5 +25,5 @@ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
const char *
mpfr_get_version (void)
{
- return "4.1.0-dev";
+ return "4.2.0-dev";
}