summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 8da9cc4..cd915e3 100644
--- a/INSTALL
+++ b/INSTALL
@@ -10,8 +10,8 @@ in the Texinfo documentation (type 'info mpc.info').
1. In the directory of the MPC archive, type
- tar xzf mpc-0.9.tar.gz
- cd mpc-0.9
+ tar xzf mpc-0.9.1.tar.gz
+ cd mpc-0.9.1
./configure
make
diff --git a/Makefile.vc b/Makefile.vc
index 5456507..9bb9538 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -50,7 +50,7 @@ CPP = cl.exe
CC = cl.exe
CDEFAULTFLAGS=/O2 /GR- /MD /nologo /EHs
-VERSION=0.9
+VERSION=0.9.1-dev
######################## do not edit below this line ##########################
diff --git a/configure.ac b/configure.ac
index b127462..45dcb43 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ MA 02111-1307, USA. */
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT(mpc, 0.9, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 0.9.1-dev, 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 298f323..793b7f6 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -24,5 +24,5 @@ MA 02111-1307, USA. */
const char *
mpc_get_version (void)
{
- return "0.9";
+ return "0.9.1-dev";
}
diff --git a/src/mpc.h b/src/mpc.h
index c32ca65..01738be 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -33,8 +33,8 @@ MA 02111-1307, USA. */
/* Define MPC version number */
#define MPC_VERSION_MAJOR 0
#define MPC_VERSION_MINOR 9
-#define MPC_VERSION_PATCHLEVEL 0
-#define MPC_VERSION_STRING "0.9"
+#define MPC_VERSION_PATCHLEVEL 1
+#define MPC_VERSION_STRING "0.9.1-dev"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))