From 3fc7a7166161466cbea0a0ea8fdfefb7a0390b11 Mon Sep 17 00:00:00 2001 From: vlefevre Date: Fri, 10 Jul 2020 13:33:00 +0000 Subject: Updated version to 4.1.1-dev. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/4.1@14068 280ebfd0-de03-0410-8827-d642c229c3f4 --- INSTALL | 8 ++++---- VERSION | 2 +- configure.ac | 2 +- doc/mpfr.texi | 2 +- src/mpfr.h | 4 ++-- src/version.c | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/INSTALL b/INSTALL index f1b6a5ccc..89c6a5f41 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.1.1/ 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.1.1/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.1.1/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 , which may be more up-to-date); - * the MPFR web page for this version , + * the MPFR web page for this version , 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 ee74734aa..2c2e449e1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.0 +4.1.1-dev diff --git a/configure.ac b/configure.ac index ea92c1f97..0aa798bc4 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]) +AC_INIT([MPFR],[4.1.1-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 54b6aa8c2..b75a19c2b 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 +@set VERSION 4.1.1-dev @set UPDATED-MONTH July 2020 @settitle GNU MPFR @value{VERSION} @synindex tp fn diff --git a/src/mpfr.h b/src/mpfr.h index 109c75f73..d3fe67589 100644 --- a/src/mpfr.h +++ b/src/mpfr.h @@ -26,8 +26,8 @@ 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_PATCHLEVEL 0 -#define MPFR_VERSION_STRING "4.1.0" +#define MPFR_VERSION_PATCHLEVEL 1 +#define MPFR_VERSION_STRING "4.1.1-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 035f1580a..f4825c19c 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"; + return "4.1.1-dev"; } -- cgit v1.2.1