bump soname

oops, thanks benjamin
This commit is contained in:
John Cupitt 2014-01-19 15:11:06 +00:00
parent fd617aa520
commit 11339f29b5
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,6 @@
19/1/14 started 7.38.1
- bump soname, thanks benjamin
18/1/14 started 7.38.0
- version bump

View File

@ -2,7 +2,7 @@
# also update the version number in the m4 macros below
AC_INIT([vips], [7.38.0], [vipsip@jiscmail.ac.uk])
AC_INIT([vips], [7.38.1], [vipsip@jiscmail.ac.uk])
# required for gobject-introspection
AC_PREREQ(2.62)
@ -17,7 +17,7 @@ AC_CONFIG_MACRO_DIR([m4])
# user-visible library versioning
m4_define([vips_major_version], [7])
m4_define([vips_minor_version], [38])
m4_define([vips_micro_version], [0])
m4_define([vips_micro_version], [1])
m4_define([vips_version],
[vips_major_version.vips_minor_version.vips_micro_version])
@ -36,9 +36,9 @@ VIPS_VERSION_STRING=$VIPS_VERSION-`date`
# binary interface changes backwards compatible?: increment age
# binary interface changes not backwards compatible?: reset age to 0
LIBRARY_CURRENT=36
LIBRARY_REVISION=1
LIBRARY_AGE=1
LIBRARY_CURRENT=37
LIBRARY_REVISION=0
LIBRARY_AGE=0
# patched into include/vips/version.h
AC_SUBST(VIPS_VERSION)