]> www.ginac.de Git - ginac.git/commitdiff
Preparing for release 1.5.8. release_1-5-8
authorJens Vollinga <jensv@nikhef.nl>
Tue, 6 Jul 2010 13:30:23 +0000 (15:30 +0200)
committerJens Vollinga <jensv@nikhef.nl>
Tue, 6 Jul 2010 13:30:23 +0000 (15:30 +0200)
NEWS
configure.ac

diff --git a/NEWS b/NEWS
index e2f4e1859ffd7cf04830b8330e4f6dc43c9d0cd0..bd82efb3c70f39a1da657707d2765ed184da35b7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,17 @@
 This file records noteworthy changes.
 
 This file records noteworthy changes.
 
+1.5.8 (06 July 2010)
+* Changed default behaviour of conjugate() for user-defined functions to avoid
+  wrong evaluations. A user-defined conjugate_func must now be explicitly
+  registered.
+* Fixed: Parser now handles abbreviations as advertized in the manual.
+* Fixed two bugs in the GCD code (one infinite loop, one miscalculation).
+* Fixed dangerous iterator use.
+* Fixed a memory leak in excompiler.
+* Fixed several syntax issues wrt to gcc 4.5 and wrt to compile option -std=cxx0x.
+* Fixed a wrong URL and a texinfo problem in the manual.
+* Added degree_vector() utility function.
+
 1.5.7 (29 March 2010)
 * Fixed a bug in the GCD code (infinite loop in pgcd()).
 * Fixed a bug in atan2() (division by zero error for atan2(x,0) if x is a
 1.5.7 (29 March 2010)
 * Fixed a bug in the GCD code (infinite loop in pgcd()).
 * Fixed a bug in atan2() (division by zero error for atan2(x,0) if x is a
index 3c174e2193d38e123139c0013e449abe14a99842..248cfa3d9c16b10ecd2d95cceb7f115773560db9 100644 (file)
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
 dnl GiNaC version number
 m4_define([ginac_major_version], [1])
 m4_define([ginac_minor_version], [5])
 dnl GiNaC version number
 m4_define([ginac_major_version], [1])
 m4_define([ginac_minor_version], [5])
-m4_define([ginac_micro_version], [7])
+m4_define([ginac_micro_version], [8])
 m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version])
 m4_define([ginac_release], [ginac_major_version.ginac_minor_version])
 
 m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version])
 m4_define([ginac_release], [ginac_major_version.ginac_minor_version])
 
@@ -23,8 +23,8 @@ dnl systems, the numbering is consecutive. It only guarantees that it is
 dnl increasing. This doesn't matter, though: there is not incurred cost
 dnl for numbers that are omitted, except for shrinking the available space
 dnl of leftover numbers. Not something we need to worry about yet. ;-)
 dnl increasing. This doesn't matter, though: there is not incurred cost
 dnl for numbers that are omitted, except for shrinking the available space
 dnl of leftover numbers. Not something we need to worry about yet. ;-)
-m4_define([ginac_lt_current], [1])
-m4_define([ginac_lt_revision], [2])
+m4_define([ginac_lt_current], [2])
+m4_define([ginac_lt_revision], [0])
 
 AC_INIT([GiNaC], ginac_version, [<ginac-list@ginac.de>])
 AC_PREREQ(2.59)
 
 AC_INIT([GiNaC], ginac_version, [<ginac-list@ginac.de>])
 AC_PREREQ(2.59)