summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUGS2
-rw-r--r--NEWS17
-rw-r--r--TODO2
-rw-r--r--doc/version.texi2
-rw-r--r--src/mpc.h2
5 files changed, 12 insertions, 13 deletions
diff --git a/BUGS b/BUGS
index 3a0266d..d58e204 100644
--- a/BUGS
+++ b/BUGS
@@ -1,5 +1,3 @@
- No checks are made for intermediate overflows, which may occur
in the middle of the algorithms although the final result
may be representable.
-- Correct handling of special values (Nan, infinities) is
- postponed to a later version.
diff --git a/NEWS b/NEWS
index ff88040..159a20d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-Recent changes:
+Changes in version 0.5.1:
- New functions:
- mpc_set_fr_fr
- mpc_real, mpc_imag
@@ -6,19 +6,20 @@ Recent changes:
- New macros:
- version number: MPC_VERSION_MAJOR, MPC_VERSION_MINOR,
MPC_VERSION_PATCHLEVEL, MPC_VERSION_STRING
- - reference to number parts: mpc_realref and mpc_imagref
- - Configure checks on recent mpfr library (version >= 4.2)
+ - references to number parts: mpc_realref and mpc_imagref
+ - Test framework rewritten
+ - Configure checks for recent gmp (>= 4.2) and mpfr (>= 2.3)
+ libraries
- New configure options: --with-gmp-lib, --with-gmp-include,
--with-mpfr-lib, and --with-mpfr-include
- - Export declarations for MSWindows, makefile.vc updated (thanks to Mickael
- Gastineau)
- - Test framework rewritten
+ - Export declarations for MSWindows, makefile.vc updated (thanks to
+ Mickael Gastineau)
- Optimisations:
- mul_fr, sin, cos
- Bug fixes:
- configure looks for gmp first, then for mpfr
- - set_fr, fr_sub, mul_fr, div_fr, div, cos, sqr
- - fix special values handling: log, sqr, exp, sqrt, mul, norm
+ - cos, div, div_fr, fr_sub, mul_fr, set_fr, sqr
+ - fix handling of special values: exp, log, mul, norm, sqr, sqrt
Changes in version 0.5 ("Aconitum neomontanum"):
- Support for autotools
diff --git a/TODO b/TODO
index bcf1178..1bcfd77 100644
--- a/TODO
+++ b/TODO
@@ -18,7 +18,7 @@ New functions to implement:
base 16 together with the precision of the variable)
- from Andreas Enge and Philippe Théveny 9 April 2008
work plan for completing functionality
- 1) inverse trigonometric functions
+ inverse trigonometric functions
- from Andreas Enge and Philippe Théveny 17 July 2008
agm (and complex logarithm with agm ?)
diff --git a/doc/version.texi b/doc/version.texi
index c4ad7f5..8b74a6e 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
-@set UPDATED 4 November 2008
+@set UPDATED 17 November 2008
@set UPDATED-MONTH November 2008
@set EDITION 0.5.1
@set VERSION 0.5.1
diff --git a/src/mpc.h b/src/mpc.h
index 0db0daf..5eec3c8 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 5
#define MPC_VERSION_PATCHLEVEL 1
-#define MPC_VERSION_STRING "0.5.1-dev"
+#define MPC_VERSION_STRING "0.5.1"
/* Check if stdio.h is included */
#if defined (_GMP_H_HAVE_FILE)