From: Jens Vollinga Date: Thu, 28 Jan 2010 14:25:01 +0000 (+0100) Subject: Preparing for release 1.5.6. X-Git-Tag: release_1-5-6 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=commitdiff_plain;h=ce67a917331907288c6702b05e191722f4f0441b;p=ginac.git Preparing for release 1.5.6. --- diff --git a/NEWS b/NEWS index 2b5c9b4d..c3d6e273 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ This file records noteworthy changes. +1.5.6 (28 January 2010) +* Fixed compile problem with gcc 3.4. +* Improved excompiler: The ginac-excompiler script will only be installed if + excompiler is supported and enabled. + 1.5.5 (04 November 2009) * Correct libtool versioning. diff --git a/configure.ac b/configure.ac index 0f40373e..a77249e1 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], [5]) +m4_define([ginac_micro_version], [6]) 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], [0]) +m4_define([ginac_lt_revision], [1]) AC_INIT([GiNaC], ginac_version, []) AC_PREREQ(2.59)