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
This commit is contained in:
Craig Small 2019-12-08 14:56:53 +11:00
parent 216477e247
commit d063bfc59e
2 changed files with 6 additions and 2 deletions

View File

@ -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)

4
NEWS
View File

@ -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