From 767eafbf7f93a22ba8d33e77afb11469da597405 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Thu, 8 Aug 2019 00:13:17 +0200 Subject: Unix: fix library version for next release https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html says: 4. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0. 5. If any interfaces have been added since the last public release, then increment age. So both current and age must be incremented. The patch in fde20bb9b7cba0ea6e96db920d0a0169c361ca92 was not complete. Signed-off-by: Ludovic Rousseau --- configure.ac | 2 +- libusb/version_nano.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 76f67d9..da8a158 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ AC_INIT([libusb],[LIBUSB_MAJOR[.]LIBUSB_MINOR[.]LIBUSB_MICRO[]LIBUSB_RC],[libusb # http://sourceware.org/autobook/autobook/autobook_91.html lt_current=2 lt_revision=0 -lt_age=1 +lt_age=2 LTLDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age}" AM_INIT_AUTOMAKE diff --git a/libusb/version_nano.h b/libusb/version_nano.h index b4336b6..d7f210e 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11377 +#define LIBUSB_NANO 11378 -- cgit v1.2.1