From: Bartosz Golaszewski Date: Wed, 16 May 2018 12:14:12 +0000 (+0200) Subject: bindings: cxx: set the ABI version to 1.0.0 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ef864bf50349a408845396bd8d4c1dd479f162ed;p=qemu-gpiodev%2Flibgpiod.git bindings: cxx: set the ABI version to 1.0.0 The C++ bindings ABI that will be released in v1.1 is considered stable. Set it to 1.0.0 for the release. Signed-off-by: Bartosz Golaszewski --- diff --git a/configure.ac b/configure.ac index 487778f..a3a82e6 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ AC_SUBST(VERSION_STR, [$PACKAGE_VERSION$EXTRA_VERSION]) # Define the libtool version as (C.R.A): AC_SUBST(ABI_VERSION, [2.0.0]) # Have a separate ABI version for C++ bindings: -AC_SUBST(ABI_CXX_VERSION, [0.0.0]) +AC_SUBST(ABI_CXX_VERSION, [1.0.0]) AC_CONFIG_AUX_DIR([autostuff]) AC_CONFIG_MACRO_DIRS([m4])