From: Jens Vollinga Date: Wed, 25 Feb 2009 12:07:18 +0000 (+0100) Subject: Preparing for release. X-Git-Tag: release_1-5-1~1 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=7e145335f2d185c7e07044be5a758bb8f0f71e29;hp=0256e2fe48a0ecce79c37ac209620ca852b7f11a Preparing for release. --- diff --git a/NEWS b/NEWS index 68fd8547..775cca35 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ This file records noteworthy changes. +1.5.1 (25 February 2009) +* Fixed compiling problems with GNU g++ 3.4. +* Fixed broken RTTI on woe32. + 1.5.0 (17 February 2009) * Added polynomial factorization. * New, faster (recursive descent) expression parser. diff --git a/configure.ac b/configure.ac index 7e0f9b2f..f86b041f 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], [0]) +m4_define([ginac_micro_version], [1]) m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version]) m4_define([ginac_release], [ginac_major_version.ginac_minor_version]) @@ -14,7 +14,9 @@ dnl When making releases, do dnl 1. Increment ginac_lt_revision dnl 2. If any interfaces have been added, removed, or changed since the last dnl release, increment ginac_lt_current and set ginac_lt_revision to 0. -dnl 3. If any interfaces have been removed since the last release, set +dnl 3. If any interfaces have been added since the last release, increment +dnl ginac_lt_age. +dnl 4. If any interfaces have been removed since the last release, set dnl ginac_lt_age to 0. dnl dnl Please note: the libtool naming scheme cannot guarantee that on all @@ -22,8 +24,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], [0]) -m4_define([ginac_lt_age], [0]) +m4_define([ginac_lt_current], [1]) +m4_define([ginac_lt_age], [1]) m4_define([ginac_lt_revision], [0]) AC_INIT([GiNaC], ginac_version, [])