LibCVS Perl produces an implementation of the LibCVS Specification. It is currently of alpha quality, and provides read-only access to the repository and the working directory.
The current release of LibCVS Perl is 1.0.2, and it is available through CPAN.
LibCVS Perl is hosted on Savannah, at https://savannah.nongnu.org/projects/libcvs-perl/.
LibCVS Perl version numbers consist of 3 fields, a major number, a minor number and a release number. Minor and release numbers are always written using two digits, for consistency with Perl version numbering schemes, and nice sorting.
Major numbers start at 1 and are incremented if and only if there are interface or behavioural changes which are not backward compatible to previous stable versions.
Minor numbers follow the numbering scheme of CVS: even minor numbers indicate expiremental versions, and odd minor numbers indicate a stable version.
Release numbers increase with each release.
Perl module versions are typically of the form 1.0304_03, where the _n part is only present for experimental versions. This is generated by concatenating the version numbers, and appending a _00 for experimental versions.
All versions will be backward compatible to any stable version (odd minor number) with a lesser version number and the same major number. For example, 2.05.06 will be backward compatible to 2.01.03, but not to 1.03.06 (different major numbers) nor to 2.04.01 (expiremental version).
This allows development of interface extensions across expiremental versions. 1.04.05 can undo any interface development done in a 1.04.* version, but can't change interface from 1.03.06.
It also permits bugfix releases, as long as they do not affect the interface. So 1.01.07 can be released after 1.03.02, but it may not add any interface extensions, since it must retain compatiblity with 1.03.00, 1.03.01 and 1.03.02.
Tags on releases will start with "Release-", followed by the release version, "." replaced with "-". eg: "Release-1-00-00". If maintenance is required for a particular release, that will be the base tag of the new branch, and the branch will be the same, but with "Branch" instead of "Release", like this: "Branch-2-03-02"
Immediate | Issue must be resolved immediately, it is blocking development or requires an immediate bug fix release. |
High | Issue must be resolved before the next regular release. |
Medium | Issue should be resolved for the next regular release. |
Low | Issue is not being considered for the next regular release, but will be reconsidered for the one after that. |
Later | Issue will not be considered until work commences on a release with a new minor number. |