Increment CAIRO_VERSION to 1.0.0 and libtool versioning to 4:2:2.

This commit is contained in:
Carl Worth 2005-08-24 09:29:39 +00:00
parent 95c1d54701
commit 995ed33726
2 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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 ===========================================================================