diff options
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/mpfr.texi | 2 | ||||
-rw-r--r-- | src/mpfr.h | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -1 +1 @@ -4.0.1-dev +4.0.1-rc2 diff --git a/configure.ac b/configure.ac index 75202d4a4..16446a32c 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ http://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.0.1-dev]) +AC_INIT([MPFR],[4.0.1-rc2]) 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 9fb414fe1..1b5db56f9 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.0.1-dev +@set VERSION 4.0.1-rc2 @set UPDATED-MONTH February 2018 @settitle GNU MPFR @value{VERSION} @synindex tp fn diff --git a/src/mpfr.h b/src/mpfr.h index 41af8db1e..5f918dd3b 100644 --- a/src/mpfr.h +++ b/src/mpfr.h @@ -27,7 +27,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., #define MPFR_VERSION_MAJOR 4 #define MPFR_VERSION_MINOR 0 #define MPFR_VERSION_PATCHLEVEL 1 -#define MPFR_VERSION_STRING "4.0.1-dev" +#define MPFR_VERSION_STRING "4.0.1-rc2" /* User macros: MPFR_USE_FILE: Define it to make MPFR define functions dealing diff --git a/src/version.c b/src/version.c index cdaf4143b..4b54938fe 100644 --- a/src/version.c +++ b/src/version.c @@ -25,5 +25,5 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., const char * mpfr_get_version (void) { - return "4.0.1-dev"; + return "4.0.1-rc2"; } |