diff --git a/include/FLAC++/export.h b/include/FLAC++/export.h index 1c258b79..d2deb7b9 100644 --- a/include/FLAC++/export.h +++ b/include/FLAC++/export.h @@ -71,9 +71,9 @@ /* These #defines will mirror the libtool-based library version number, see * http://www.gnu.org/software/libtool/manual.html#Libtool-versioning */ -#define FLACPP_API_VERSION_CURRENT 7 +#define FLACPP_API_VERSION_CURRENT 8 #define FLACPP_API_VERSION_REVISION 0 -#define FLACPP_API_VERSION_AGE 1 +#define FLACPP_API_VERSION_AGE 2 /* \} */ diff --git a/include/FLAC/export.h b/include/FLAC/export.h index cdeaead6..a525f29c 100644 --- a/include/FLAC/export.h +++ b/include/FLAC/export.h @@ -71,9 +71,9 @@ /** These #defines will mirror the libtool-based library version number, see * http://www.gnu.org/software/libtool/manual.html#Libtool-versioning */ -#define FLAC_API_VERSION_CURRENT 9 +#define FLAC_API_VERSION_CURRENT 10 #define FLAC_API_VERSION_REVISION 0 /**< see above */ -#define FLAC_API_VERSION_AGE 1 /**< see above */ +#define FLAC_API_VERSION_AGE 2 /**< see above */ #ifdef __cplusplus extern "C" { diff --git a/src/libFLAC++/Makefile.am b/src/libFLAC++/Makefile.am index 2f63c048..360caa19 100644 --- a/src/libFLAC++/Makefile.am +++ b/src/libFLAC++/Makefile.am @@ -46,7 +46,7 @@ EXTRA_DIST = \ libFLAC++.m4 # see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention -libFLAC___la_LDFLAGS = -version-info 7:0:1 +libFLAC___la_LDFLAGS = -version-info 8:0:2 libFLAC___la_LIBADD = ../libFLAC/libFLAC.la libFLAC___la_SOURCES = \ diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index 62b25bbf..cbfb0acb 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -96,7 +96,7 @@ extra_ogg_sources = \ ogg_mapping.c endif # see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention -libFLAC_la_LDFLAGS = -version-info 9:0:1 -lm $(LOCAL_EXTRA_LDFLAGS) +libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS) libFLAC_la_SOURCES = \ bitmath.c \ bitreader.c \