]> www.ginac.de Git - ginac.git/commitdiff
Preparing for release.
authorJens Vollinga <jensv@nikhef.nl>
Wed, 25 Feb 2009 12:07:18 +0000 (13:07 +0100)
committerJens Vollinga <jensv@nikhef.nl>
Wed, 25 Feb 2009 12:07:18 +0000 (13:07 +0100)
NEWS
configure.ac

diff --git a/NEWS b/NEWS
index 68fd8547f68ecd53846252bd34b9ee4f46e8419f..775cca3522caca8ffdb8e1380426ee78face9214 100644 (file)
--- 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.
index 7e0f9b2f4054ec1fd208f13ce045b22ca411b911..f86b041f717a154e756c33ab40b1da45db6b89bc 100644 (file)
@@ -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, [<ginac-list@ginac.de>])