diff options
author | Carl Worth <cworth@cworth.org> | 2005-05-18 10:13:14 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-05-18 10:13:14 +0000 |
commit | 17c740eb6bb7567a0ac70afd339d1a0cc0bb979e (patch) | |
tree | 049a87a147bdf29d838255aa1608ddffc4397c0e | |
parent | b1301f401336a29f63a8b5990969e03593f1808a (diff) |
Add notes for snapshot 0.1.5.SNAPSHOT_0_1_5
Increment version to 0.1.5.
-rw-r--r-- | pixman/ChangeLog | 6 | ||||
-rw-r--r-- | pixman/NEWS | 18 | ||||
-rw-r--r-- | pixman/configure.in | 2 |
3 files changed, 25 insertions, 1 deletions
diff --git a/pixman/ChangeLog b/pixman/ChangeLog index 3571efa3..518b7c6a 100644 --- a/pixman/ChangeLog +++ b/pixman/ChangeLog @@ -1,5 +1,11 @@ 2005-05-18 Carl Worth <cworth@cworth.org> + * NEWS: Add notes for snapshot 0.1.5. + + * configure.in: Increment version to 0.1.5. + +2005-05-18 Carl Worth <cworth@cworth.org> + * src/icimage.c (pixman_image_destroy): Clear pointers to NULL after destroying/freeing them. diff --git a/pixman/NEWS b/pixman/NEWS index 62d00554..f800d0e2 100644 --- a/pixman/NEWS +++ b/pixman/NEWS @@ -1,3 +1,21 @@ +Snapshot 0.1.5 (2005-05-18 Carl Worth <cworth@cworth.org>) +========================================================== +Bug fixes +--------- +Fix confusion of depth and bpp which was causing cairo to crash on +some X servers. + +Properly declare pixman_fixed16_16_t as int32_t which fixes +compilation failures on some platforms. + +Fix to find inttypes.h on AIX. + +Fix bug in compositing when the source image has no alpha channel. + +Some fixes to the clipping code. + +Fix memory leak when asked to draw a degenerate trapezoid list. + Snapshot 0.1.4 (2005-03-07 Carl Worth <cworth@cworth.org>) ========================================================== API Addition diff --git a/pixman/configure.in b/pixman/configure.in index 9fb24e7a..a033f209 100644 --- a/pixman/configure.in +++ b/pixman/configure.in @@ -7,7 +7,7 @@ AC_INIT(src/pixman.h) dnl =========================================================================== # Package version number, (as distinct from shared library version) -LIBPIXMAN_VERSION=0.1.4-head +LIBPIXMAN_VERSION=0.1.5 # libtool shared library version |