mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 13:38:01 +02:00
Add notes for snapshot 0.1.3.
Increment version to 0.1.3 Add reminder to diff pixman.h to look for API changes since the last snapshot.
This commit is contained in:
parent
c3e41a966c
commit
4b072cc7d2
4 changed files with 37 additions and 2 deletions
|
|
@ -1,5 +1,12 @@
|
|||
2005-01-21 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* NEWS: Add notes for snapshot 0.1.3.
|
||||
|
||||
* configure.in: Increment version to 0.1.3
|
||||
|
||||
* RELEASING: Add reminder to diff pixman.h to look for API changes
|
||||
since the last snapshot.
|
||||
|
||||
* src/Makefile.am (libpixman_la_SOURCES): Add missing files to
|
||||
satisfy make distcheck.
|
||||
|
||||
|
|
|
|||
22
pixman/NEWS
22
pixman/NEWS
|
|
@ -1,3 +1,25 @@
|
|||
Snapshot 0.1.3 (2005-01-21 Carl Worth <cworth@cworth.org>)
|
||||
==========================================================
|
||||
Performance improvements
|
||||
------------------------
|
||||
Solid fills are now much faster, (thanks to Alexander Larsson).
|
||||
|
||||
Bug fixes
|
||||
---------
|
||||
Fixed to quiet warnings in newer versions of gcc.
|
||||
|
||||
Don't divide-by-zero if given an image of size 0x0.
|
||||
|
||||
Fixed several corner cases where values outside a trapezoid would be
|
||||
drawn with alpha 1/255 (in the 8-bit case).
|
||||
|
||||
Internal changes
|
||||
----------------
|
||||
Imported the newer point-sampling trapezoid rasterization code that
|
||||
Keith Packard wrote for the X server. This provide pixel-perfect
|
||||
matching with the Render extension as well as code that is simpler,
|
||||
more robust, and easier to maintain.
|
||||
|
||||
Snapshot 0.1.2 (2004-10-27 Carl Worth <cworth@cworth.org>)
|
||||
==========================================================
|
||||
New functionality
|
||||
|
|
|
|||
|
|
@ -29,7 +29,13 @@ fixes are committed. Here are the steps to follow:
|
|||
|
||||
Sift through the information in ChangeLog since the last
|
||||
snapshot. Summarize major changes briefly in a style similar
|
||||
to other entries in NEWS.
|
||||
to other entries in NEWS. Take special care to note any
|
||||
incompatible changes in the API. These should be easy to find
|
||||
by looking for pixman.h in the ChangeLog. Additionally, the
|
||||
output of following command should be examined using the
|
||||
previous snapshot tag:
|
||||
|
||||
cvs diff -r SNAPSHOT_X_Y_Z src/pixman.h
|
||||
|
||||
4) Increment LIBPIXMAN_VERSION in configure.in
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ AC_INIT(src/pixman.h)
|
|||
dnl ===========================================================================
|
||||
|
||||
# Package version number, (as distinct from shared library version)
|
||||
LIBPIXMAN_VERSION=0.1.2
|
||||
LIBPIXMAN_VERSION=0.1.3
|
||||
|
||||
# libtool shared library version
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue