diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 30 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2008-05-13 Behdad Esfahbod <behdad@gnome.org> + + * === Released 1.21.1 === + + * configure.in: Version 1.21.1 + + * NEWS: Updated. + 2008-05-03 Behdad Esfahbod <behdad@gnome.org> Bug 531242 – Leak when calculating win32 font coverage @@ -1,3 +1,24 @@ +Overview of changes between 1.21.0 and 1.21.1 +============================================== +- Partial work to make pango_break() exactly follow Unicode TR#14 and TR#29. + The Grapheme Boundaries and Word Boundaries now work. For word boundaries, + a new member was added to PangoLogAttr. Sentence Boundaries and Line Breaks + to follow in the next release. +- Err if no cairo font backends font +- Misc bug fixes +- New public API: + Add new PangoLogAttr member is_word_boundary, that implements UAX#29's + Word Boundaries semantics. The is_word_start and is_word_end members + will change implementation later on to be consitent with the word + boundaries. + +- Bugs fixed in this release: + Bug 531242 – Leak when calculating win32 font coverage + Patch from Daniel Atallah + Bug 530757 – Docs build breaks because of hash sign in URL in <ulink...> + Bug 530685 – Pango no longer using cairo as a backend as of pango 1.19.4 + Part of Bug 97545 – Make pango_default_break follow Unicode TR #29 + Overview of changes between 1.20.2 and 1.21.0 ============================================== - Require cairo >= 1.6.4. diff --git a/configure.in b/configure.in index a04f12cb..1548ab2a 100644 --- a/configure.in +++ b/configure.in @@ -22,7 +22,7 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) m4_define([pango_version_minor], [21]) -m4_define([pango_version_micro], [0]) +m4_define([pango_version_micro], [1]) 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. |