summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-11-03 13:20:49 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-11-03 13:20:49 +0000
commit3d37ac75fddde058d19e922d70f56e4605c11573 (patch)
treebdabf59ea85dcba48dce3b3ccb5385ac1a7a5dd1
parente717ac7134a532a55bf36ecfb4b123ab51f40a8e (diff)
downloadmpc-3d37ac75fddde058d19e922d70f56e4605c11573.tar.gz
smallish technical changes for version 0.8
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@714 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--INSTALL4
-rw-r--r--NEWS6
-rw-r--r--TODO25
-rw-r--r--configure.ac2
-rw-r--r--doc/version.texi8
-rw-r--r--src/get_version.c2
-rw-r--r--src/mpc.h6
-rw-r--r--tests/Makefile.am3
8 files changed, 25 insertions, 31 deletions
diff --git a/INSTALL b/INSTALL
index abf2321..90fd87d 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.7.1.tar.gz
- cd mpc-0.7.1
+ tar xzf mpc-0.8.tar.gz
+ cd mpc-0.8
./configure
make
diff --git a/NEWS b/NEWS
index 3774e8c..f163ccb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,11 @@
-Recent changes:
+Changes in version 0.8 ("Dianthus deltoides"):
- New functions:
- mpc_asin, mpc_acos, mpc_atan, mpc_asinh, mpc_acosh, mpc_atanh,
mpc_pow_d, mpc_pow_ld, mpc_pow_si, mpc_pow_ui, mpc_pow_z, mpc_pow_fr
- Bug fixes:
- ui_div: real divisor
-Changes in version 0.7:
+Changes in version 0.7 ("Campanula uniflora"):
- New functions: mpc_pow, mpc_set_nan, mpc_swap
- Bug fixes:
- log: along branch cut
@@ -18,7 +18,7 @@ Changes in version 0.7:
- Changed MPC_SET_X_Y macro
- Functions mpc_random and mpc_random2 removed
-Changes in version 0.6:
+Changes in version 0.6 ("Bellis perennis"):
- New functions: mpc_get_str, mpc_set_str, mpc_strtoc, mpc_set_uj,
mpc_set_sj, mpc_set_ld, mpc_set_ld_ld, mpc_set_si_si, mpc_set_uj_uj,
mpc_set_sj_sj, mpc_set_f, mpc_set_f_f, mpc_set_q, mpc_set_q_q, mpc_set_z,
diff --git a/TODO b/TODO
index 16c6508..790a253 100644
--- a/TODO
+++ b/TODO
@@ -8,22 +8,15 @@ Efficiency:
Once mpc_sin_cos exists, improve mpc_tan to use it
New functions to implement:
-
- a) needed for C99 support:
-
- - none
-
- b) other functions
-
- - from Andreas Enge 16 September 2008:
- 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:
- correctly rounded roots of unity zeta_n^i
+- from Andreas Enge 16 September 2008:
+ 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:
+ correctly rounded roots of unity zeta_n^i
New tests to add:
- from Andreas Enge and Philippe Théveny 9 April 2008
diff --git a/configure.ac b/configure.ac
index 3d17a31..75a8d34 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.7.1-dev, mpc-discuss@lists.gforge.inria.fr)
+AC_INIT(mpc, 0.8-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 9026e5e..dc6f30c 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 10 September 2009
-@set UPDATED-MONTH September 2009
-@set EDITION 0.7
-@set VERSION 0.7
+@set UPDATED 29 October 2009
+@set UPDATED-MONTH October 2009
+@set EDITION 0.8-dev
+@set VERSION 0.8-dev
diff --git a/src/get_version.c b/src/get_version.c
index cf85221..676db54 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.7.1-dev";
+ return "0.8-dev";
}
diff --git a/src/mpc.h b/src/mpc.h
index 209eb80..3a5a6c3 100644
--- a/src/mpc.h
+++ b/src/mpc.h
@@ -27,9 +27,9 @@ MA 02111-1307, USA. */
/* Define MPC version number */
#define MPC_VERSION_MAJOR 0
-#define MPC_VERSION_MINOR 7
-#define MPC_VERSION_PATCHLEVEL 1
-#define MPC_VERSION_STRING "0.7.1-dev"
+#define MPC_VERSION_MINOR 8
+#define MPC_VERSION_PATCHLEVEL 0
+#define MPC_VERSION_STRING "0.8-dev"
/* Macros dealing with MPC VERSION */
#define MPC_VERSION_NUM(a,b,c) (((a) << 16L) | ((b) << 8) | (c))
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 0f4b7c9..5e3837d 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -15,7 +15,8 @@ check_LTLIBRARIES=libmpc-tests.la
libmpc_tests_la_SOURCES=mpc-tests.h random.c tgeneric.c read_data.c \
comparisons.c
-EXTRA_DIST = abs.dat add.dat add_fr.dat arg.dat conj.dat cos.dat cosh.dat \
+EXTRA_DIST = abs.dat acos.dat acosh.dat asin.dat asinh.dat atan.dat atanh.dat \
+add.dat add_fr.dat arg.dat conj.dat cos.dat cosh.dat \
div.dat div_fr.dat exp.dat fr_div.dat fr_sub.dat inp_str.dat log.dat mul.dat \
mul_fr.dat neg.dat norm.dat pow.dat proj.dat sin.dat sinh.dat sqr.dat \
sqrt.dat strtoc.dat sub.dat sub_fr.dat tan.dat tanh.dat