From: Jens Vollinga Date: Mon, 29 Mar 2010 00:34:52 +0000 (+0200) Subject: Preparing for release 1.5.7. X-Git-Tag: release_1-5-7 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=c48424be67d8c6b05b0e040acd49b3e904acf6f9;ds=sidebyside Preparing for release 1.5.7. --- diff --git a/NEWS b/NEWS index c3d6e273..e2f4e185 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ This file records noteworthy changes. +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 + negative and composite term). +* Products now correctly set info_flags::negative and info_flags::negint. + 1.5.6 (28 January 2010) * Fixed compile problem with gcc 3.4. * Improved excompiler: The ginac-excompiler script will only be installed if diff --git a/configure.ac b/configure.ac index a77249e1..3c174e21 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], [6]) +m4_define([ginac_micro_version], [7]) m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version]) m4_define([ginac_release], [ginac_major_version.ginac_minor_version]) @@ -24,7 +24,7 @@ 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], [1]) +m4_define([ginac_lt_revision], [2]) AC_INIT([GiNaC], ginac_version, []) AC_PREREQ(2.59)