summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL4
-rw-r--r--Makefile.vc5
-rw-r--r--configure.ac4
-rw-r--r--doc/version.texi8
-rw-r--r--src/get_version.c4
-rw-r--r--src/mpc.h8
6 files changed, 16 insertions, 17 deletions
diff --git a/INSTALL b/INSTALL
index 6e24a93..8da9cc4 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.8.3.tar.gz
- cd mpc-0.8.3
+ tar xzf mpc-0.9.tar.gz
+ cd mpc-0.9
./configure
make
diff --git a/Makefile.vc b/Makefile.vc
index 50fba66..5258e96 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -1,7 +1,6 @@
-
# Makefile for the MPC library (Windows version).
#
-# Copyright (C) 2002, 2004, 2005, 2007, 2008, 2009, 2010 Andreas Enge, Mickael Gastineau, Paul Zimmermann
+# Copyright (C) 2002, 2004, 2005, 2007, 2008, 2009, 2010, 2011 Andreas Enge, Mickael Gastineau, Paul Zimmermann
#
# This file is part of the MPC Library.
#
@@ -47,7 +46,7 @@ CPP = cl.exe
CC = cl.exe
CDEFAULTFLAGS=/O2 /GR- /MD /nologo /EHs
-VERSION=0.8.3-dev
+VERSION=0.9-dev
######################## do not edit below this line ##########################
diff --git a/configure.ac b/configure.ac
index 33c1869..565916d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
/* configure.ac
-Copyright (C) 2008, 2009, 2010 Andreas Enge, Philippe Th\'eveny
+Copyright (C) 2008, 2009, 2010, 2011 Andreas Enge, Philippe Th\'eveny
This file is part of the MPC Library.
@@ -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.8.3-dev, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 0.9-dev, mpc-discuss@lists.gforge.inria.fr)
AC_CONFIG_SRCDIR([src/mpc-impl.h])
AC_CONFIG_HEADER([config.h])
diff --git a/doc/version.texi b/doc/version.texi
index 29a6198..ec21ea1 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 2 September 2010
-@set UPDATED-MONTH September 2010
-@set EDITION 0.8.3-dev
-@set VERSION 0.8.3-dev
+@set UPDATED 7 January 2011
+@set UPDATED-MONTH January 2011
+@set EDITION 0.9-dev
+@set VERSION 0.9-dev
diff --git a/src/get_version.c b/src/get_version.c
index bc9615b..f50b43a 100644
--- a/src/get_version.c
+++ b/src/get_version.c
@@ -1,6 +1,6 @@
/* mpc_get_version -- MPC version
-Copyright (C) 2008, 2009, 2010 Philippe Th\'eveny, Andreas Enge
+Copyright (C) 2008, 2009, 2010, 2011 Philippe Th\'eveny, Andreas Enge
This file is part of the MPC Library.
@@ -24,5 +24,5 @@ MA 02111-1307, USA. */
const char *
mpc_get_version (void)
{
- return "0.8.3-dev";
+ return "0.9-dev";
}
diff --git a/src/mpc.h b/src/mpc.h
index db6463e..11c0ed2 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -1,6 +1,6 @@
/* mpc.h -- Include file for mpc.
-Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010 Andreas Enge, Paul Zimmermann, Philippe Th\'eveny
+Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011 Andreas Enge, Paul Zimmermann, Philippe Th\'eveny
This file is part of the MPC Library.
@@ -32,9 +32,9 @@ MA 02111-1307, USA. */
/* Define MPC version number */
#define MPC_VERSION_MAJOR 0
-#define MPC_VERSION_MINOR 8
-#define MPC_VERSION_PATCHLEVEL 3
-#define MPC_VERSION_STRING "0.8.3-dev"
+#define MPC_VERSION_MINOR 9
+#define MPC_VERSION_PATCHLEVEL 0
+#define MPC_VERSION_STRING "0.9-dev"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))