From a77df5dd4ef0eb25b5caeb99b8a83cefb759674d Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Fri, 20 Feb 2015 17:41:29 +0100 Subject: Increase version number to 1.0.4dev. --- INSTALL | 4 ++-- Makefile.vc | 2 +- configure.ac | 2 +- src/get_version.c | 2 +- src/mpc.h | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/INSTALL b/INSTALL index 89fa744..b21a0a7 100644 --- a/INSTALL +++ b/INSTALL @@ -19,8 +19,8 @@ This is for the impatient, for deeper explanations see the chapter 1. In the directory of the GNU MPC archive, type - tar xzf mpc-1.0.3.tar.gz - cd mpc-1.0.3 + tar xzf mpc-1.0.4.tar.gz + cd mpc-1.0.4 ./configure make diff --git a/Makefile.vc b/Makefile.vc index bebe615..610e99e 100644 --- a/Makefile.vc +++ b/Makefile.vc @@ -50,7 +50,7 @@ CPP = cl.exe CC = cl.exe CDEFAULTFLAGS=/O2 /GR- /MD /nologo /EHs -VERSION=1.0.3 +VERSION=1.0.4dev ######################## do not edit below this line ########################## diff --git a/configure.ac b/configure.ac index 09a9fa0..bb5ba86 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT(mpc, 1.0.3, mpc-discuss@lists.gforge.inria.fr) +AC_INIT(mpc, 1.0.4dev, mpc-discuss@lists.gforge.inria.fr) AC_CONFIG_SRCDIR([src/mpc-impl.h]) AC_CONFIG_HEADER([config.h]) diff --git a/src/get_version.c b/src/get_version.c index 88e7e98..c21d197 100644 --- a/src/get_version.c +++ b/src/get_version.c @@ -44,6 +44,6 @@ mpfr_regular_p (mpfr_srcptr z) const char * mpc_get_version (void) { - return "1.0.3"; + return "1.0.4dev"; } diff --git a/src/mpc.h b/src/mpc.h index f6e1bee..5e5e3dd 100644 --- a/src/mpc.h +++ b/src/mpc.h @@ -32,8 +32,8 @@ along with this program. If not, see http://www.gnu.org/licenses/ . /* Define MPC version number */ #define MPC_VERSION_MAJOR 1 #define MPC_VERSION_MINOR 0 -#define MPC_VERSION_PATCHLEVEL 3 -#define MPC_VERSION_STRING "1.0.3" +#define MPC_VERSION_PATCHLEVEL 4 +#define MPC_VERSION_STRING "1.0.4dev" /* Macros dealing with MPC VERSION */ #define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c)) -- cgit v1.2.1