From: Uwe Hermann Date: Sat, 9 Jan 2016 00:13:45 +0000 (+0100) Subject: Bump libtool version (not package version) to 1:0:1. X-Git-Tag: libserialport-0.1.1~1 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=3fcdc9f7d5aa9bbae3041d80ab50b83e9bef182d;p=libserialport.git Bump libtool version (not package version) to 1:0:1. The last release (0.1.0) had the libtool version (current:revision:age) set to 0:0:0. Since this release doesn't change/remove any interfaces (it does *add* new interfaces, though), 'current' and 'age' are increased and 'revision' is set to 0, resulting in 1:0:1. http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info Programs using libserialport don't need to be recompiled or relinked. --- diff --git a/configure.ac b/configure.ac index f5aaf99..f6b66e8 100644 --- a/configure.ac +++ b/configure.ac @@ -63,9 +63,9 @@ AC_SUBST([SP_PACKAGE_VERSION], [sp_package_version]) # Carefully read the libtool docs before updating these numbers! # The algorithm for determining which number to change (and how) is nontrivial! # http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info -SP_LIB_VERSION_CURRENT=0 +SP_LIB_VERSION_CURRENT=1 SP_LIB_VERSION_REVISION=0 -SP_LIB_VERSION_AGE=0 +SP_LIB_VERSION_AGE=1 AC_SUBST([SP_LIB_VERSION], ["$SP_LIB_VERSION_CURRENT:$SP_LIB_VERSION_REVISION:$SP_LIB_VERSION_AGE"])