diff options
author | Bryce Harrington <bryce@osg.samsung.com> | 2016-12-07 17:11:38 -0800 |
---|---|---|
committer | Bryce Harrington <bryce@osg.samsung.com> | 2016-12-07 19:26:36 -0800 |
commit | 9b23aa0f9de4b0ccac8640bea43570b13f8f5a0f (patch) | |
tree | 9f43bd528b27859219cff65c3ff99896f9cb4b95 | |
parent | 50b1767d754a75fdbbe8dcd5a6ad243f0a1b443c (diff) |
Release 1.14.81.14.8
-rw-r--r-- | NEWS | 43 | ||||
-rw-r--r-- | cairo-version.h | 2 |
2 files changed, 44 insertions, 1 deletions
@@ -1,3 +1,46 @@ +Release 1.14.8 (2016-12-07 Bryce Harrington <bryce@osg.samsung.com>) +======================================================================== +Bugfix release rolling up backported fixes for the past year. + +For a complete log of changes since 1.14.6, please see: + + http://cairographics.org/releases/ChangeLog.cairo-1.14.8 + +Features +-------- +None + +API Changes +----------- +None + +Dependency Changes +------------------ +None + +Performance Optimizations +------------------------- +None + +Bug Fixes +--------- +* Fix "invalidfont" error on some printers when printing PDFs with + embedded fonts that have glyphs (such as spaces) with + num_contours == 0. (Bug #79897) +* Fix deadlock when destruction of a scaled font indirectly triggers + destruction of a second scaled font, causing the global cache to be + locked twice. (Bug #93891) +* Fix X errors reported to applications when shmdt() is called before + the Attach request is processed, due to missing xcb and xlib calls. +* Fix random failure in record-paint-alpha-clip-mast test case, caused + by an incorrect assumption that a deferred clear can be skipped. + (Bug #84330) +* Fix crash when dealing with an XShmGetImage() failure, caused by a + double free in _get_image_surface(). (Bug #91967) +* Fix build issue when using non-GNU strings utility. (Bug #88639) +* Cleanup debugging text sent to stdout instead of log. (Bug #95227) + + Release 1.14.6 (2015-12-09 Bryce Harrington <bryce@osg.samsung.com>) ======================================================================== Simple bugfix release to fix one Windows issue. diff --git a/cairo-version.h b/cairo-version.h index 23eb64045..6c0b0902d 100644 --- a/cairo-version.h +++ b/cairo-version.h @@ -3,6 +3,6 @@ #define CAIRO_VERSION_MAJOR 1 #define CAIRO_VERSION_MINOR 14 -#define CAIRO_VERSION_MICRO 7 +#define CAIRO_VERSION_MICRO 8 #endif |