From: Jens Vollinga Date: Fri, 10 Jul 2009 13:21:09 +0000 (+0200) Subject: Preparing for release 1.5.2. X-Git-Tag: release_1-5-2 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=6130b911feb5c516b00081b867fb0aef487f212a;ds=sidebyside Preparing for release 1.5.2. --- diff --git a/NEWS b/NEWS index 1c863785..b210bf3d 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ This file records noteworthy changes. +1.5.2 (10 July 2009) +* Fixed documentation of return_type_info() +* Fixed cstdio include issue. +* GiNaC now requires at least version 1.2.2 of cln. + 1.5.1 (25 February 2009) * Fixed compiling problems with GNU g++ 3.4. * Work around weird C++ RTTI behaviour on woe32 so GiNaC works on MinGW again. diff --git a/configure.ac b/configure.ac index 63757b03..b2a8e84e 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], [1]) +m4_define([ginac_micro_version], [2]) m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version]) m4_define([ginac_release], [ginac_major_version.ginac_minor_version]) @@ -26,7 +26,7 @@ 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_revision], [1]) +m4_define([ginac_lt_revision], [2]) AC_INIT([GiNaC], ginac_version, []) AC_PREREQ(2.59)