|
libConfuse 3.4
Small configuration file parser library for C
|
Roughly in the order they need doing:
[vX.Y][UNRELEASED] heading, point its link at the release range (vX.Y-1...vX.Y), and open a fresh [UNRELEASED] sectionconfigure.ac: AC_INIT X.Y-dev -> X.Y (this also sets the libconfuse.pc version through @VERSION@)-version-info in src/Makefile.am, see the rules in Library Versioning belowmake -C po update-pomake check and make distcheck-rcN release and test it in an actual real projectgit tag -s -a vX.YThe tag push triggers the Release General workflow, which builds the distribution tarballs and the Windows ZIP, and creates the GitHub release using the top ChangeLog entry as the release notes.
Afterwards, bump configure.ac to the next X.Y+1-dev and open a fresh [UNRELEASED] section in the ChangeLog so master moves on.
LibConfuse relies on GNU Libtool for building the library. For a user of the library it is important to maintain a clear ABI versioning scheme. This is not the same as the libConfuse version, but rather the library "compatibility level".
The libConfuse ABI version is specified in src/Makefile.am and looks like this:
libconfuse_la_LDFLAGS = -version-info 0:0:0
\ \ `-- age
\ `--- revision
`---- current
It must be updated according to the GNU Libtool recommendations:
0:0:0 for each libtool library.c:r:a becomes c:r+1:a).The libtool ABI versioning logic is very confusing but works if you just disable your brain and follow the rules, one by one.
Example #1: a new function has been added, none of the existing ones have changed. The initial version is 1:0:0, we follow the rules above to the letter: increase revision, increase current and set revision to zero, and finally increase age. This, rather confusingly, gives us 2:0:1 which libtool then translates to libconfuse.so.1.1.0.
Example #2: some existing functions are changed, they now return an int instead of void. The initial version is 0:0:0, and we follow the rules again: increment revision, increment current and set revision to zero, set age to zero. This gives us 1:0:0, which is then translated to libconfuse.so.1.0.0.
Usually, non-developers have no interest in running development versions (releases are frequent enough), and developers are expected to know how to juggle versions. In such an ideal world, it is good enough to bump the library version just prior to a release, point 2.
However, if releases are few and far between, distributors may start to use snapshots. When a distributor uses a snapshot, the distributor has to handle the library version manually. Things can get ugly when the distributor has released an intermediate version with a bumped library version, and when the official release is bumped to that version, the distributor will then have to bump the library version for the official release, and it can be confusing if someone reports bugs on versions that you didn't even know existed.
The problem with bumping the version with every change is that if your interface is not finished, the version number might run away, and it looks pretty bad if a library is at version 262. It kind of tells the user that the library interface is volatile, which is not good for business.