Hi,
Sorry for the late reply.
You can release an alpha or beta version and it will appear at the top of the compatibility table. Also one can use the basic
https://github.com/lvc/abi-compliance-checker and
https://github.com/lvc/abi-dumper tools to compare particular releases:
abi-dumper libdap.so.X -o ABI-X.dump -public-headers ./path/to/headers/X
abi-dumper libdap.so.Y -o ABI-Y.dump -public-headers ./path/to/headers/Y
abi-compliance-checker -l libdap -old ABI-X.dump -new ABI-Y.dump -report-path ./compat_report_X_vs_Y.html
echo $? # 0 — compatible changes, non-zero — non-compatible
You can save old ABI dump in the source tree and compare it with new ones generated for the latest versions of the object. Update saved ABI dump if intended ABI changes occur.
Thank you.
On Tuesday, February 14, 2017 at 2:02:35 AM UTC+3, James Gallagher wrote: