summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.vc2
-rw-r--r--configure.ac2
-rw-r--r--doc/mpc.texi4
-rw-r--r--doc/version.texi6
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h2
6 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.vc b/Makefile.vc
index 7924549..5456507 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-rc2
+VERSION=0.9
######################## do not edit below this line ##########################
diff --git a/configure.ac b/configure.ac
index 524708e..b127462 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-rc2, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 0.9, mpc-discuss@lists.gforge.inria.fr)
AC_CONFIG_SRCDIR([src/mpc-impl.h])
AC_CONFIG_HEADER([config.h])
diff --git a/doc/mpc.texi b/doc/mpc.texi
index 0363191..b874b8c 100644
--- a/doc/mpc.texi
+++ b/doc/mpc.texi
@@ -36,8 +36,8 @@ was introduced.
@set MINGMP 4.3.2
@set MINMPFR 2.4.2
-@set AUTHORS Andreas Enge, Philippe Th@'eveny, Paul Zimmermann
-@set COPYRIGHTDATES 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011
+@set AUTHORS INRIA
+@set COPYRIGHTDATES 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
@ifinfo
@format
START-INFO-DIR-ENTRY
diff --git a/doc/version.texi b/doc/version.texi
index cdd84ce..b109a80 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 12 February 2011
+@set UPDATED 21 February 2011
@set UPDATED-MONTH February 2011
-@set EDITION 0.9-rc2
-@set VERSION 0.9-rc2
+@set EDITION 0.9
+@set VERSION 0.9
diff --git a/src/get_version.c b/src/get_version.c
index 10b6e73..298f323 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-rc2";
+ return "0.9";
}
diff --git a/src/mpc.h b/src/mpc.h
index 43deb3d..c32ca65 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -34,7 +34,7 @@ MA 02111-1307, USA. */
#define MPC_VERSION_MAJOR 0
#define MPC_VERSION_MINOR 9
#define MPC_VERSION_PATCHLEVEL 0
-#define MPC_VERSION_STRING "0.9-rc2"
+#define MPC_VERSION_STRING "0.9"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))