summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.vc2
-rw-r--r--TODO1
-rw-r--r--configure.ac2
-rw-r--r--doc/version.texi8
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h2
6 files changed, 8 insertions, 9 deletions
diff --git a/Makefile.vc b/Makefile.vc
index 98e2ce5..23d2b86 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -46,7 +46,7 @@ CPP = cl.exe
CC = cl.exe
CDEFAULTFLAGS=/O2 /GR- /MD /nologo /EHs
-VERSION=0.8-dev
+VERSION=0.8
######################## do not edit below this line ##########################
diff --git a/TODO b/TODO
index 790a253..121c027 100644
--- a/TODO
+++ b/TODO
@@ -12,7 +12,6 @@ New functions to implement:
mpc_sin_cos (needs mpfr_sinh_cosh)
- from Mickael Gastineau <gastineau@imcce.fr> 14 Apr 2008:
mpc_fma: d=a*b+c
-- What about the mpc_foo_pow functions?
- from Andreas Enge and Philippe Théveny 17 July 2008
agm (and complex logarithm with agm ?)
- from Andreas Enge 25 June 2009:
diff --git a/configure.ac b/configure.ac
index 75a8d34..6010159 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.8-dev, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 0.8, 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 dc6f30c..a33c110 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 29 October 2009
-@set UPDATED-MONTH October 2009
-@set EDITION 0.8-dev
-@set VERSION 0.8-dev
+@set UPDATED 5 November 2009
+@set UPDATED-MONTH November 2009
+@set EDITION 0.8
+@set VERSION 0.8
diff --git a/src/get_version.c b/src/get_version.c
index 676db54..eba54e5 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.8-dev";
+ return "0.8";
}
diff --git a/src/mpc.h b/src/mpc.h
index 3a5a6c3..98aa3cd 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -29,7 +29,7 @@ MA 02111-1307, USA. */
#define MPC_VERSION_MAJOR 0
#define MPC_VERSION_MINOR 8
#define MPC_VERSION_PATCHLEVEL 0
-#define MPC_VERSION_STRING "0.8-dev"
+#define MPC_VERSION_STRING "0.8"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))