summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoeren Apel <soeren@apelpie.net>2024-09-24 23:51:24 +0200
committerSoeren Apel <soeren@apelpie.net>2024-09-24 23:56:02 +0200
commit21b3dfe5f68c205be4086469335fd2fc2ce11ed2 (patch)
treee8173981a0043bb6f33abc52541b2f962083aabd
parent953292743ca3430463a2ae53f29dffec4ed5a55b (diff)
Bump libtool and package versions to 1:1:1 and 0.1.2HEADorigin/masterorigin/HEADmaster
The last release (0.1.1) had the libtool version (current:revision:age) set to 1:0:1. Since this release doesn't change/remove any interfaces, 'current' and 'age' remain unchanged and 'revision' is increased, resulting in 1:1:1. http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info Programs using libserialport don't need to be recompiled or relinked.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index a26b851..d71833f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ AC_PREREQ([2.63])
# libserialport package version number (NOT the same as shared lib version!).
m4_define([sp_package_version_major], [0])
m4_define([sp_package_version_minor], [1])
-m4_define([sp_package_version_micro], [1])
+m4_define([sp_package_version_micro], [2])
m4_define([sp_package_version], [sp_package_version_major.sp_package_version_minor.sp_package_version_micro])
AC_INIT([libserialport], [sp_package_version], [martin-libserialport@earth.li],
@@ -77,7 +77,7 @@ AC_SUBST([SP_PACKAGE_VERSION], [sp_package_version])
# 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=1
-SP_LIB_VERSION_REVISION=0
+SP_LIB_VERSION_REVISION=1
SP_LIB_VERSION_AGE=1
AC_SUBST([SP_LIB_VERSION],
["$SP_LIB_VERSION_CURRENT:$SP_LIB_VERSION_REVISION:$SP_LIB_VERSION_AGE"])