From 7e145335f2d185c7e07044be5a758bb8f0f71e29 Mon Sep 17 00:00:00 2001 From: Jens Vollinga Date: Wed, 25 Feb 2009 13:07:18 +0100 Subject: [PATCH 1/1] Preparing for release. --- NEWS | 4 ++++ configure.ac | 10 ++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) 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, []) -- 2.45.1