From d063bfc59ed9c580e01e27acd73fb7626c068689 Mon Sep 17 00:00:00 2001 From: Craig Small Date: Sun, 8 Dec 2019 14:56:53 +1100 Subject: [PATCH] library: Adjust version for release Previous release incremented the age instead of incrementing the revision. The age can only increment if revision (internal changes only) or current (API changes) also increments. A C:R:A of 8.0.2 means its the latest revision of 8.0 library and any binary linked against 8.0 will work. This is our third revision of the 8.0 library. References: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html --- Makefile.am | 4 ++-- NEWS | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index bbf0c7df..01342426 100644 --- a/Makefile.am +++ b/Makefile.am @@ -209,8 +209,8 @@ w_SOURCES = w.c lib/fileutils.c # See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html LIBprocps_CURRENT=8 -LIBprocps_REVISION=0 -LIBprocps_AGE=1 +LIBprocps_REVISION=2 +LIBprocps_AGE=0 proc_libprocps_la_LIBADD = $(LIB_KPARTS) diff --git a/NEWS b/NEWS index b6ed9524..735d0726 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ procps-ng-NEXT ---------------- + * library: Increment to 8:2:0 + No removals or functions + Internal changes only, so revision is incremented. + Previous version should have been 8:1:0 not 8:0:1 * docs: Use correct symbols for -h option in free.1 Debian #898774 * docs: ps.1 now warns about command name length issue #101 * docs: install translated man pages issue #146