Version Control System
Projects MUST use a Version Control System to ensure changes to the code source are properly tracked and individual changes can be identified and referred to easily. git is the most widespread tool in use those days but there are many good tools to choose from.
When releasing a new version of a software package, projects MUST use tags or any similar mechanism -- symbolic reference -- to identify in the VCS the revision that corresponds to the newly released package. This tag MUST match the version number of the released package such that it's straightforward to link both.
Projects SHOULD document their tagging convention.
- Version
1.2.3
of a packageX
could be tagged as1.2.3
orv1.2.3
orX-1.2.3
, etc. - Project
P
releasing two packagesX
andY
respectively with version1.2.3
and2.3.4
could tag the same revision withX-1.2.3
andY-2.3.4