diff options
author | Carl Worth <cworth@cworth.org> | 2005-08-24 09:29:39 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-08-24 09:29:39 +0000 |
commit | 995ed33726ac1e840ea1d6a28f48d6883a4bad59 (patch) | |
tree | 93bc9de2394f78cd029562b56fc3312b52eb4ff1 | |
parent | 95c1d5470151d4f9778a840847c9b532da1ef9f7 (diff) |
Increment CAIRO_VERSION to 1.0.0 and libtool versioning to 4:2:2.RELEASE_1_0_01.0.0
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 12 |
2 files changed, 11 insertions, 6 deletions
@@ -1,5 +1,10 @@ 2005-08-24 Carl Worth <cworth@cworth.org> + * configure.in: Increment CAIRO_VERSION to 1.0.0 and libtool + versioning to 4:2:2. + +2005-08-24 Carl Worth <cworth@cworth.org> + * NEWS: Fix typos. Add CAIRO_STATUS_INVALID_DASH. 2005-08-24 Carl Worth <cworth@cworth.org> diff --git a/configure.in b/configure.in index 2ba64df0..8aa782fd 100644 --- a/configure.in +++ b/configure.in @@ -3,9 +3,9 @@ AC_PREREQ(2.54) # cairo package version number, (as distinct from shared library version) # An odd micro number indicates in-progress development, (eg. from CVS) # 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, 3) +m4_define(cairo_version_major, 1) +m4_define(cairo_version_minor, 0) +m4_define(cairo_version_micro, 0) 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=3 +LT_CURRENT=4 # Increment any time the source changes; set to # 0 if you increment CURRENT -LT_REVISION=1 +LT_REVISION=2 # 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=1 +LT_AGE=2 dnl =========================================================================== |