diff options
-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 2ba64df02..8aa782fde 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 =========================================================================== |