diff options
author | Carlos Garcia Campos <carlosgc@gnome.org> | 2008-08-10 16:31:33 +0200 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2008-08-10 16:31:33 +0200 |
commit | 22a3be83641df53dbbb81c8c6f3e072d4eb72624 (patch) | |
tree | 953de54198cf4ecb1f83a86fed7a9679669349b7 | |
parent | 3529b5d06b30ee88b431cdf216cc48088bc83a13 (diff) |
Update for release 0.2.10.2.1
-rw-r--r-- | NEWS | 25 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 27 insertions, 2 deletions
@@ -1,3 +1,28 @@ +libspectre 0.2.1 (10 August 2008) +================================= + +This is a bugfix only release. There are no API changes at all. + +Fixes and improvements in the PostScript parser: + + - Support DOS EPS files (Bug #16810) + - A work around for some invalid documents generated by some versions + of Mozilla has been added. (Bug #14384) + - PS-AdobeFont comments are not considered as begining of a nested + document anymore so that the font code is not ignored. + +Portability fixes: + + - Alternative implementation of spectre_strdup_vprintf for platforms + where vasprintf is not available (Bug #15127) + - Implement _spectre_get_pid for win32 (Bug #16309) + - Open files in binary mode for win32 compatibility (Bug #16309) + - Fix endianness bug + +Several cleanups and improvements have been made in the code and lots +of compile warnings have been fixed. + + libspectre 0.2.0 (03 January 2008) ================================== diff --git a/configure.ac b/configure.ac index 757b494..544751b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.59) m4_define([spectre_major_version], [0]) m4_define([spectre_minor_version], [2]) -m4_define([spectre_micro_version], [0]) +m4_define([spectre_micro_version], [1]) m4_define([spectre_version], [spectre_major_version.spectre_minor_version.spectre_micro_version]) @@ -23,7 +23,7 @@ LT_CURRENT=2 ## increment any time the source changes; set to ## 0 if you increment CURRENT -LT_REVISION=0 +LT_REVISION=1 ## increment if any interfaces have been added; set to 0 ## if any interfaces have been changed or removed. removal has |