diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-12-04 00:20:04 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-12-04 00:20:04 +0000 |
commit | f5e62ac0f993badf002683a4448825438c16bbf6 (patch) | |
tree | fa5f50488225e474c72d6ba86a1cde060319d7fd | |
parent | 6d86e180c9ddb1dc63ef06976bf9be9ef4b1f05a (diff) | |
download | pango-f5e62ac0f993badf002683a4448825438c16bbf6.tar.gz |
=== Released 1.19.1 ===PANGO_1_19_1
2007-12-03 Behdad Esfahbod <behdad@gnome.org>
* === Released 1.19.1 ===
* configure.in: Version 1.19.1
* NEWS: Updated.
svn path=/trunk/; revision=2512
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 21 insertions, 2 deletions
@@ -1,5 +1,13 @@ 2007-12-03 Behdad Esfahbod <behdad@gnome.org> + * === Released 1.19.1 === + + * configure.in: Version 1.19.1 + + * NEWS: Updated. + +2007-12-03 Behdad Esfahbod <behdad@gnome.org> + Bug 501317 – "and" found where word should be "an" * docs/tmpl/layout.sgml: Fix typo. @@ -1,3 +1,14 @@ +Overview of changes between 1.19.0 and 1.19.1 +============================================== +- Various cleanup in the HarfBuzz code and merging with upstream/Qt changes. +- Built-in pango.aliases file for Win32 default aliases. +- Document cairo examples and misc documentation improvements. +- Bugs fixed in this release: + Bug 485536 – underline_position can be zero + Bug 500549 – pangocairo.h should include pango.h and cairo.h + Bug 492517 – Built-in default aliases file + Bug 495091 – pango-utils.c:variable is declared at middle of block + Overview of changes between 1.18.3 and 1.19.0 ============================================== - Update list of languages to that of fontconfig-2.4.91. diff --git a/configure.in b/configure.in index b41787c8..803bc525 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], [19]) -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. m4_define([pango_api_version], [1.0]) dnl Number of releases since we've added interfaces -m4_define([pango_interface_age], [0]) +m4_define([pango_interface_age], [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)]) |