diff options
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | configure.in | 27 |
2 files changed, 22 insertions, 20 deletions
@@ -1,3 +1,18 @@ +Overview of changes between 1.27.1 and 1.28.0 +============================================= +- [HB] Fix leak when duplicating blob +- Misc bug fixes +- Bugs fixed: + Bug 611033 - Layout using ATSUI fontmap treats absolute font sizes a... + Bug 605655 - Pango 1.26.2 introduces kerning bug + Bug 611229 - Pango reads from uninitialized memory + Bug 594101 - [Indic] needed character class data updates to support unicode 5.1 + Bug 345066 - backspace changes independent indic characters + Bug 609326 - Complex script shaping failed in the FT2 backend on Windows + Bug 604128 - Applications crash when displaying Hebrew characters + Bug 608923 - Incorrect/broken ligatures on MacOS + Bug 610791 - checks fail for unused documented symbols + Overview of changes between 1.26.2 and 1.27.1 ============================================= - Enable introspection again diff --git a/configure.in b/configure.in index 8e2bebc5..3b352e19 100644 --- a/configure.in +++ b/configure.in @@ -5,24 +5,14 @@ dnl ========================================================================== dnl Versioning dnl ========================================================================== -dnl Making releases: -dnl PANGO_VERSION_MICRO += 1; -dnl PANGO_INTERFACE_AGE += 1; -dnl PANGO_BINARY_AGE += 1; -dnl if any functions have been added, set PANGO_INTERFACE_AGE to 0. -dnl if backwards compatibility has been broken, -dnl set PANGO_BINARY_AGE _and_ PANGO_INTERFACE_AGE to 0. - -dnl -dnl We do the version number components as m4 macros -dnl so that we can base configure --help output off -dnl of them. -dnl - -dnl The triplet +dnl The triplet m4_define([pango_version_major], [1]) -m4_define([pango_version_minor], [27]) -m4_define([pango_version_micro], [1]) +m4_define([pango_version_minor], [28]) +m4_define([pango_version_micro], [0]) +dnl Module API version. This should be stepped up when a change causes +dnl older modules to not work with new pango. +m4_define([pango_module_version], [1.6.0]) + m4_define([pango_version], [pango_version_major.pango_version_minor.pango_version_micro]) @@ -40,9 +30,6 @@ m4_if(m4_eval(pango_version_minor % 2), [1], dnl Number of releases since we've broken binary compatibility. m4_define([pango_binary_age], [m4_eval(100 * pango_version_minor + pango_version_micro)]) -dnl Module API version. This should be stepped up when a change causes -dnl older modules to not work with new pango. -m4_define([pango_module_version], [1.6.0]) AC_INIT(pango, pango_version(), |