summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-08-13 05:00:20 +0000
committerCarl Worth <cworth@cworth.org>2005-08-13 05:00:20 +0000
commitb3a4f29f830dbcb57ef3d1e4c3c140126752043b (patch)
treeb69f9d850354f0134bd300bdc2a04a84ff0993b2
parent3f24b949a070aebaeaa465ccd09604bda0be717b (diff)
Added notes for release 0.9.2.RELEASE_0_9_2
Increment CAIRO_VERSION to 0.9.2 and libtool versioning to 3:1:1. Remove some more 'snapshot' language. Make it more clear that the libtool versioning numbers need to be updated.
-rw-r--r--ChangeLog20
-rw-r--r--NEWS88
-rw-r--r--RELEASING10
-rw-r--r--configure.in8
4 files changed, 99 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ac471322..9da7852d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2005-08-13 Carl Worth <cworth@cworth.org>
+ * NEWS: Added notes for release 0.9.2.
+
+ * configure.in: Increment CAIRO_VERSION to 0.9.2 and libtool
+ versioning to 3:1:1.
+
+ * RELEASING: Remove some more 'snapshot' language. Make it more
+ clear that the libtool versioning numbers need to be updated.
+
+2005-08-13 Carl Worth <cworth@cworth.org>
+
* src/cairo-pattern.c: Fix unterminated comment that eliminated
cairo_pattern_add_color_stop_rgba.
@@ -17,12 +27,6 @@
2005-08-13 Carl Worth <cworth@cworth.org>
- * NEWS:
- * src/cairo-pattern.c:
- * src/cairo.c:
-
-2005-08-13 Carl Worth <cworth@cworth.org>
-
* src/cairoint.h: Turn the mutex code back on. It looks like the
deadlocks have disappeared as of the cairo_scaled_font_map patch
from two days ago.
@@ -35,10 +39,6 @@
2005-08-13 Carl Worth <cworth@cworth.org>
- * src/cairoint.h:
-
-2005-08-13 Carl Worth <cworth@cworth.org>
-
Minor, cosmetic changes:
* src/cairo-ft-font.c: (_cairo_ft_unscaled_font_lock_face): Reowrd
diff --git a/NEWS b/NEWS
index f47470f9d..410899af2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,79 @@
+Release 0.9.2 (2005-08-13 Carl Worth <cworth@cworth.org>)
+=========================================================
+Release numbering
+-----------------
+ * You will notice that this release jumped from 0.9.0 to 0.9.2. We've
+ decided to use an odd micro version number (eg. 0.9.1) to indicate
+ in-progress development between releases. As soon as 0.9.2 is
+ tagged, the version will be incremented in CVS to 0.9.3 where it
+ will stay until just before 0.9.4 is built, uploaded, and tagged.
+
+ So, even-micro == a released version, odd-micro == something in-between.
+
+Libpixman dependency dropped
+----------------------------
+ * As of this release, the dependency on an internal libpixman has
+ been dropped. Instead, the code from libpixman needed for cairo has
+ been incorporated into the cairo source tree. The motivation for
+ this change is that while cairo's API is stable and ready to be
+ maintained after the 1.0 release, libpixman's API is not, so we do
+ not want to expose it at this time.
+
+ Also, the incorporation of libpixman into cairo also renames all
+ previously-public libpixman symbols in order to avoid any conflict
+ with a future release of libpixman
+
+API additions
+-------------
+ * Macros and functions have been added so that the version of cairo
+ can be queried at either compile-time or at run-time. The version
+ is made available as both a human-readable string and as a single
+ integer:
+
+ CAIRO_VERSION_STRING eg. "0.9.2"
+ CAIRO_VERSION eg. 000902
+
+ const char*
+ cairo_version_string (void); /* eg. "0.9.2" */
+
+ int
+ cairo_version (void); /* eg. 000902 */
+
+ A macro is provided to convert a three-part component version into
+ the encoded single-integer form:
+
+ CAIRO_VERSION_ENCODE(X,Y,Z)
+
+ For example, the CAIRO_VERSION value of 000902 is obtained as
+ CAIRO_VERSION_ENCODE(0,9,2). The intent is to make version
+ comparisons easy, either at compile-time:
+
+ #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(0,9,2)
+ ...
+ #endif
+
+ Or at run-time:
+
+ if (cairo_version() >= CAIRO_VERSION_ENCODE(0,9,2)) { /* ... */ }
+
+Thread safety
+-------------
+ * This release adds pthread-based locking (when available) to make
+ the caches used by cairo safe for threaded programs. Some may
+ remember a failed experiment with this locking between the 0.5.1
+ and 0.5.2 snapshots, (where even single-threaded programs that
+ linked with -lpthread would deadlock). We believe that that problem
+ has been fixed, so we are looking forward to testing and reports
+ from users with threaded applications.
+
+Bug fixes
+---------
+ * The XCB and Quartz backends failed to compiled in the 0.9.0 release
+ due to minor syntax errors. These have now been fixed.
+
+ * Various crashes in glitz and pixman due to size 0 glyphs have been
+ fixed.
+
Release 0.9.0 (2005-08-08 Carl Worth <cworth@cworth.org>)
=========================================================
Soname change
@@ -17,7 +93,7 @@ Soname change
release series have distinct library versioning.
All future releases will use the library versioning to properly
- indicate comptaibility between releases. So, any application
+ indicate compatibility between releases. So, any application
re-compiled now to work with the 0.9.0 will not need to be
recompiled when a compatible 1.0 release of cairo is made in the
future.
@@ -80,7 +156,7 @@ cairo-ft
Bug fixes
---------
* Fix the unbounded operators to actually produce a correct result,
- (previously the results were artificially restricited to the
+ (previously the results were artificially restricted to the
bounding box of whatever shape was being drawn rather than
extending out infinitely). The fixed operators are:
@@ -103,7 +179,7 @@ Bug fixes
than NULL on error.
* cairo_set_font_face fixed to not crash if given a NULL font face,
- (which is the documented interface for restoring the defauly font
+ (which is the documented interface for restoring the default font
face).
* Fix xlib glyphset caching to not try to free a NULL glyph.
@@ -235,7 +311,7 @@ API additions
cairo_xlib_surface_set_drawable
- which allos the target drawable for an xlib cairo_surface_t to be
+ which allows the target drawable for an xlib cairo_surface_t to be
changed to another with the same format, screen, and display. This
is necessary in certain double-buffering techniques.
@@ -300,7 +376,7 @@ Bug fixes
* Fix glyph caches to not eject entries that might be immediately
needed, (fixing intermittent crashes when rendering text).
-* Fix all memory leaks found by running "make check-valigrind".
+* Fix all memory leaks found by running "make check-valgrind".
ATSUI backend changes
---------------------
@@ -1242,7 +1318,7 @@ close_path). The cairo_current_path_flat function does not accept a
curve_to callback. Instead, all curved portions of the path will be
converted to line segments, (within the current tolerance value). This
can be handy for doing things like text-on-path without having to
-manually interpolate bezier splines.
+manually interpolate Bézier splines.
New XCB backend
---------------
diff --git a/RELEASING b/RELEASING
index b4f37f5a1..882020ee5 100644
--- a/RELEASING
+++ b/RELEASING
@@ -1,9 +1,4 @@
-So far, cairo hasn't reached an initial release. But we can still form
-good habits now by practicing the release process with the current
-snapshots.
-
-A new snapshot is needed whenever significant new features or bug
-fixes are committed. Here are the steps to follow:
+Here are the steps to follow to create a new cairo release:
1) Ensure that there are no local, uncommitted modifications. The best
thing to do here may be to begin with a fresh checkout from CVS:
@@ -39,7 +34,8 @@ fixes are committed. Here are the steps to follow:
find src/ -name '*.h' -not -name '*-private.h' -not -name 'cairoint.h' | \
xargs cvs diff -r RELEASE_X_Y_Z
-4) Increment cairo_version_{minor|micro} in configure.in:
+4) Increment cairo_version_{minor|micro} and LT_{CURRENT|VERSION|AGE}
+ in configure.in:
If there are backward-incompatible changes in the API, stop
now and don't release. Go back and fix the API instead. Cairo
diff --git a/configure.in b/configure.in
index 66513578b..a56da7e66 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, 0)
m4_define(cairo_version_minor, 9)
-m4_define(cairo_version_micro, 1)
+m4_define(cairo_version_micro, 2)
AC_INIT([cairo],
cairo_version_major.cairo_version_minor.cairo_version_micro,
@@ -19,16 +19,16 @@ dnl ===========================================================================
# libtool shared library version
# Increment if the interface has additions, changes, removals.
-LT_CURRENT=2
+LT_CURRENT=3
# Increment any time the source changes; set to
# 0 if you increment CURRENT
-LT_REVISION=0
+LT_REVISION=1
# 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=0
+LT_AGE=1
dnl ===========================================================================