summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-16 09:45:44 -0700
committerCarl Worth <cworth@cworth.org>2006-06-16 09:45:44 -0700
commit65e73c81b83222de873935cf384e514ea20ac854 (patch)
tree5e9f4128d819cbc4ee716d268f65a18c4909fefb
parentb992e1e29d6d63de2a6b5b48b93d23be50fc29ca (diff)
Update version to 1.1.10 and add notes to NEWS file.1.1.10
Also update libtool version information to 10:0:8.
-rw-r--r--NEWS17
-rw-r--r--configure.in6
2 files changed, 20 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index a52baf57b..95e09a423 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,20 @@
+Snapshot 1.1.10 (2006-06-16 Carl Worth <cworth@cworth.org>)
+===========================================================
+This is the fifth in a series of snapshots working toward the 1.2
+release of cairo.
+
+The primary motivation for this snapshot is to fix a long-standing bug
+that had long been silent, but as of the 1.1.8 snapshot started
+causing crashes when run against 16-bit depth X servers, (often Xvnc
+or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the
+API.
+
+This snapshot also includes a rewrite of cairo's SVG backend to
+eliminate the dependency on libxml2. With this in place, cairo 1.2
+will not depend on any libraries that cairo 1.0 did not.
+
+As usual, there are also a few fixes for minor bugs.
+
Snapshot 1.1.8 (2006-06-14 Carl Worth <cworth@cworth.org>)
==========================================================
This is the fourth in a series of snapshots working toward the 1.2
diff --git a/configure.in b/configure.in
index cbe6a7f0d..5ff352c29 100644
--- a/configure.in
+++ b/configure.in
@@ -5,7 +5,7 @@ AC_PREREQ(2.54)
# An even micro number indicates a released version.
m4_define(cairo_version_major, 1)
m4_define(cairo_version_minor, 1)
-m4_define(cairo_version_micro, 9)
+m4_define(cairo_version_micro, 10)
AC_INIT([cairo],
cairo_version_major.cairo_version_minor.cairo_version_micro,
@@ -19,7 +19,7 @@ dnl ===========================================================================
# libtool shared library version
# Increment if the interface has additions, changes, removals.
-LT_CURRENT=9
+LT_CURRENT=10
# Increment any time the source changes; set to
# 0 if you increment CURRENT
@@ -28,7 +28,7 @@ LT_REVISION=0
# Increment if any interfaces have been added; set to 0
# if any interfaces have been removed. removal has
# precedence over adding, so set to 0 if both happened.
-LT_AGE=7
+LT_AGE=8
dnl ===========================================================================