]> sigrok.org Git - libserialport.git/commitdiff
Bump libtool version (not package version) to 1:0:1.
authorUwe Hermann <redacted>
Sat, 9 Jan 2016 00:13:45 +0000 (01:13 +0100)
committerUwe Hermann <redacted>
Wed, 27 Jan 2016 11:36:01 +0000 (12:36 +0100)
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.

configure.ac

index f5aaf9903446e014d0cd8f6c8a3b13de894ae1b9..f6b66e8eba68cbc81c58d14aafe86a1a7e861966 100644 (file)
@@ -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"])