diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 22 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2007-09-17 Behdad Esfahbod <behdad@gnome.org> + + * === Released 1.18.2 === + + * configure.in: Version 1.18.2 + + * NEWS: Updated. + 2007-09-07 Behdad Esfahbod <behdad@gnome.org> Bug 474708 – pangocairo leaks memory @@ -1,3 +1,15 @@ +Overview of changes between 1.18.1 and 1.18.2 +============================================== +- Require libthai >= 0.1.9 for enabling thai-lang module +- Misc bug fixes +- Bugs fixed in this release: + Bug 474708 – pangocairo leaks memory + Bug 472891 – Bad consistency check in pango_get_log_attrs + Patch from Mathias Hasselmann + Bug 302952 – The placement of a diacritic marks for an arabic ligature + is not correct + Bug 410152 – testboundaries test fails + Overview of changes between 1.18.0 and 1.18.1 ============================================== - Misc bug fixes, including fix for an infinite-loop bug. diff --git a/configure.in b/configure.in index e82824b9..85e682f4 100644 --- a/configure.in +++ b/configure.in @@ -22,13 +22,13 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) m4_define([pango_version_minor], [18]) -m4_define([pango_version_micro], [1]) +m4_define([pango_version_micro], [2]) m4_define([pango_version], [pango_version_major.pango_version_minor.pango_version_micro]) dnl The X.Y in -lpango-X.Y line. This is expected to stay 1.0 until Pango 2. m4_define([pango_api_version], [1.0]) dnl Number of releases since we've added interfaces -m4_define([pango_interface_age], [1]) +m4_define([pango_interface_age], [2]) dnl Number of releases since we've broken binary compatibility. m4_define([pango_binary_age], [m4_eval(100 * pango_version_minor + pango_version_micro)]) |