summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2012-07-22 15:46:32 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2012-07-22 15:46:32 +0000
commitde0522846275a9437d5b2aa99ca291fa0a5d8a63 (patch)
treec2be521ac0ed5a3f2f058923e5e9f9126ed69300
parent15804a8151018370745e76e4b29d5c5b5063107d (diff)
downloadmpc-de0522846275a9437d5b2aa99ca291fa0a5d8a63.tar.gz
bump version numbers on trunk to 1.1dev and on branch 1.0 to 1.0.1dev
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/branches/1.0@1244 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--INSTALL4
-rw-r--r--Makefile.vc2
-rw-r--r--configure.ac2
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h4
5 files changed, 7 insertions, 7 deletions
diff --git a/INSTALL b/INSTALL
index 3a6ddd9..d4d1bea 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.tar.gz
- cd mpc-1.0
+ tar xzf mpc-1.0.1.tar.gz
+ cd mpc-1.0.1
./configure
make
diff --git a/Makefile.vc b/Makefile.vc
index 1ec92d4..7ff3fd7 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
+VERSION=1.0.1dev
######################## do not edit below this line ##########################
diff --git a/configure.ac b/configure.ac
index acb47f6..c88d2f8 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, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 1.0.1dev, 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 74030be..b891d95 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -44,5 +44,5 @@ mpfr_regular_p (mpfr_srcptr z)
const char *
mpc_get_version (void)
{
- return "1.0";
+ return "1.0.1dev";
}
diff --git a/src/mpc.h b/src/mpc.h
index 6dcfaaf..ea57d1e 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 0
-#define MPC_VERSION_STRING "1.0"
+#define MPC_VERSION_PATCHLEVEL 1
+#define MPC_VERSION_STRING "1.0.1dev"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))