From 37506ee54aa46203736d657c6e8a64e695303b64 Mon Sep 17 00:00:00 2001 From: Jens Vollinga Date: Tue, 6 Jul 2010 15:30:23 +0200 Subject: [PATCH] Preparing for release 1.5.8. --- NEWS | 12 ++++++++++++ configure.ac | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index e2f4e185..bd82efb3 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,17 @@ 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 diff --git a/configure.ac b/configure.ac index 3c174e21..248cfa3d 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) -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]) @@ -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. ;-) -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, []) AC_PREREQ(2.59) -- 2.44.0