summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-04-22 00:32:25 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-04-22 00:32:25 +0000
commit43b3edade6f3e97477e737cba6bcb075890303c8 (patch)
tree33413a69af343c3a2344399d82184e5bd40e7c1b
parentfdec1d5f7febe3d289aaccda84d09419c16fc761 (diff)
downloadpango-43b3edade6f3e97477e737cba6bcb075890303c8.tar.gz
=== Released 1.21.0 ===PANGO_1_21_0
2008-04-21 Behdad Esfahbod <behdad@gnome.org> * === Released 1.21.0 === * configure.in: Version 1.21.0 * NEWS: Updated. svn path=/trunk/; revision=2610
-rw-r--r--ChangeLog8
-rw-r--r--NEWS30
-rw-r--r--configure.in6
3 files changed, 41 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a0cdddf3..370bc8da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2008-04-21 Behdad Esfahbod <behdad@gnome.org>
+ * === Released 1.21.0 ===
+
+ * configure.in: Version 1.21.0
+
+ * NEWS: Updated.
+
+2008-04-21 Behdad Esfahbod <behdad@gnome.org>
+
* ChangeLog.pre-1-20:
* Makefile.am:
Wrap ChangeLog.
diff --git a/NEWS b/NEWS
index e1fb2283..d6d0d0f7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,33 @@
+Overview of changes between 1.20.2 and 1.21.0
+==============================================
+- Require cairo >= 1.6.4.
+- Write out HarfBuzz errors as hex.
+- Add a section in the docs for bidirectional text.
+- Improved hex-box rendering in the cairo backend.
+- Add some aliases for <span> tag attributes.
+- Preserve current-point around pango_cairo_* functions.
+- New public API:
+ pango_attr_type_get_name()
+ enum PangoBidiType;
+ pango_bidi_type_get_type()
+ pango_bidi_type_for_unichar()
+ pango_layout_get_baseline()
+ pango_cairo_create_context()
+ pango_cairo_font_map_set_default()
+
+- Bugs fixed in this release:
+ Bug 515432 – Add function to get bidirectional character type of a
+ unicode character
+ Patch from Jürg Billeter
+ Bug 517119 – Add pango_cairo_create_context()
+ Bug 404416 – pango_layout_get_baseline or something
+ Bug 474706 – cairo hexbox looks ugly
+ Bug 490669 – add some <span> attribute aliases
+ Bug 501334 – Make pango_cairo_[show_]*[_path]() functions preserve
+ current point
+ Bug 514617 – Add pango_cairo_font_map_set_default()
+ Bug 511183 – Add pango_attr_type_get_name()
+
Overview of changes between 1.20.1 and 1.20.2
==============================================
- Really fix build on OS X.
diff --git a/configure.in b/configure.in
index d0458847..ae2c6a07 100644
--- a/configure.in
+++ b/configure.in
@@ -21,14 +21,14 @@ dnl
dnl The triplet
m4_define([pango_version_major], [1])
-m4_define([pango_version_minor], [20])
-m4_define([pango_version_micro], [2])
+m4_define([pango_version_minor], [21])
+m4_define([pango_version_micro], [0])
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], [0])
dnl Number of releases since we've broken binary compatibility.
m4_define([pango_binary_age],
[m4_eval(100 * pango_version_minor + pango_version_micro)])