]> www.ginac.de Git - ginac.git/commitdiff
Don't try to tie the library version to the package version number.
authorRichard Kreckel <kreckel@ginac.de>
Thu, 3 Feb 2011 23:14:00 +0000 (00:14 +0100)
committerRichard Kreckel <kreckel@ginac.de>
Thu, 3 Feb 2011 23:14:05 +0000 (00:14 +0100)
Merge branch 'master' of git://github.com/AlexeiSheplyakov/GiNaC.tmp

NEWS
configure.ac

diff --git a/NEWS b/NEWS
index 68fd8547f68ecd53846252bd34b9ee4f46e8419f..bd82efb3c70f39a1da657707d2765ed184da35b7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,54 @@
 This file records noteworthy changes.
 
+1.5.8 (06 July 2010)
+* Changed default behaviour of conjugate() for user-defined functions to avoid
+  wrong evaluations. A user-defined conjugate_func must now be explicitly
+  registered.
+* Fixed: Parser now handles abbreviations as advertized in the manual.
+* Fixed two bugs in the GCD code (one infinite loop, one miscalculation).
+* Fixed dangerous iterator use.
+* Fixed a memory leak in excompiler.
+* Fixed several syntax issues wrt to gcc 4.5 and wrt to compile option -std=cxx0x.
+* Fixed a wrong URL and a texinfo problem in the manual.
+* Added degree_vector() utility function.
+
+1.5.7 (29 March 2010)
+* Fixed a bug in the GCD code (infinite loop in pgcd()).
+* Fixed a bug in atan2() (division by zero error for atan2(x,0) if x is a
+  negative and composite term).
+* Products now correctly set info_flags::negative and info_flags::negint.
+
+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.
+
+1.5.4 (02 November 2009)
+* Default parser now can again read in user defined classes.
+* Add mul::info() and add::info() support for numeric info_flags (GiNaC now can
+  detect that the sum or product of a number of positive expressions is again a
+  positive expression).
+* Fixed cast that caused compile error on 64bit machines.
+* Fixed incorrect uses of STL iterators.
+* Removed subdirectory debian.
+* Output LaTeX-symbols using \mathrm, instead of \mbox.
+
+1.5.3 (30 July 2009)
+* The parser now understands user-defined functions by default. The identifier
+  names can now contain underscores.
+
+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.
+
 1.5.0 (17 February 2009)
 * Added polynomial factorization.
 * New, faster (recursive descent) expression parser.
index 9fe9d5f3875634ebd49ebf3aab7ab011b046ddf2..602a844847ef6762644c86d38a7689af54c68a93 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], [8])
 m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version])
 m4_define([ginac_release], [ginac_major_version.ginac_minor_version])
 
@@ -12,19 +12,21 @@ dnl version number. In particular, library version is OS dependent.
 dnl
 dnl When making releases, do
 dnl 1. Increment ginac_lt_revision
-dnl 2. If any interfaces have been added since the last release, increment
-dnl    ginac_lt_current and set ginac_lt_revision to 0.
-dnl 3. If any interfaces have been changed or removed since the last release,
-dnl    make sure you increment ginac_minor_version above and reset both
-dnl    ginac_lt_current and ginac_lt_revision to 0.
+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 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
 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_current], [2])
 m4_define([ginac_lt_revision], [0])
+m4_define([ginac_lt_age], [2])
 
 AC_INIT([GiNaC], ginac_version, [ginac-list@ginac.de], [ginac], [http://www.ginac.de/])
 AC_PREREQ(2.59)
@@ -57,11 +59,12 @@ AC_SUBST(ARCHIVE_AGE)
 AC_DEFINE_UNQUOTED(ARCHIVE_VERSION, $ARCHIVE_VERSION, [Current GiNaC archive file version number])
 AC_DEFINE_UNQUOTED(ARCHIVE_AGE, $ARCHIVE_AGE, [GiNaC archive file version age])
 
-dnl libtool versioning (We don't use libtool's age numbering since we promise
-dnl to keep the binary interface compatible if only ginac_micro_version changes.
-dnl In effect, age==current.)
-LT_VERSION_INFO="ginac_lt_current:ginac_lt_revision:ginac_lt_current"
-LT_RELEASE="ginac_release"
+dnl libtool versioning
+LT_VERSION_INFO="ginac_lt_current:ginac_lt_revision:ginac_lt_age"
+dnl TODO: remove LT_RELEASE after ABI gets changed. We used to set
+dnl LT_RELEASE (for no good reason), omitting it right now would
+dnl result in a spurious SONAME change.
+LT_RELEASE="1.5"
 
 AC_SUBST(LT_VERSION_INFO)
 AC_SUBST(LT_RELEASE)