summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--NEWS20
-rw-r--r--configure.in4
3 files changed, 32 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e08c2692..8d7ba5c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2007-03-12 Behdad Esfahbod <behdad@gnome.org>
+
+ * === Released 1.16.1 ===
+
+ * configure.in: Version 1.16.1
+
+ * NEWS: Updated.
+
+ * README: Updated.
+
2007-03-10 Tor Lillqvist <tml@novell.com>
* pango/pangowin32-private.h
diff --git a/NEWS b/NEWS
index 394660cc..282690b8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+Overview of changes between 1.16.0 and 1.16.1
+==============================================
+- Improved Win32 backend: The Win32 backend has been
+ updated to always require Uniscribe at compile-time (it still
+ is optional at run-time), and to use the wide-character variants
+ of Windows APIs which improves the backend in many ways. The
+ 1.16.0 release is obsolete as far as the Win32 backend is
+ concerned, and official DLLs were not built for it.
+- Misc build system fixes
+- Bugs fixed in this release:
+ Bug 110521 – can't find bold and/or italic fonts on win32
+ Bug 120195 – there are some functions in pangowin32-fontmap.c that
+ might maybe should be static
+ Bug 407315 – Use wide character Win32 API in the pangowin32 code
+ Bug 412654 – SED variable undefined in the `libtool --config' output
+ used by configure
+ Bug 414297 – Fails to build with --enable-static
+ --with-included-modules in thai lang module
+ Patch from Loïc Minier
+
Overview of changes between 1.15.6 and 1.16.0
==============================================
- Improved docs, with an object hierarchy and cross references to glib and
diff --git a/configure.in b/configure.in
index adc27d07..88036c47 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], [16])
-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)])