Once the changes are completed and tested, there are three steps required to include the in a future release:
In order to take any of these actions, you must be a registered author for the package.
The commit is done with the cvs commit command. In the package directory simply type
> cvs commitThis will bring up a a file in an editor in which you can document your changes.
Tagging assigns a version name to the present version of each file in the package. By convention these are usually of the form v12-34-56 where the integer fields take increasing values (e.g. v00-06-22 followed by v00-06-23). CVS requires an alphabetic first character and does not allow periods so v00-02-11 stands in for version 00.02.11.
The tag command has the form
cvs rtag v00-02-11 gtr_mcsim
where gtr_mcsim is the package name and v00-02-11 is the version.
Note that CVS will let you reuse tag names for a package but it is strongly recommended that you always tag a package a new name.
The above command tags the head version of the package. If you wish to tag the head of a branch, then use the syntax
cvs rtag -r preco03-br v00-02-11 gtr_mcsimwhere preco03-br is the tag for the head of the branch.
From the package directory, issue the command
> ctcommitIt will verify the VERSION has changed and then commit the changes and tag with a name built from the version number. The number 11.22.33 will be converted to the tag name v11-22-33.
If a package has already been committed, the command cttag can be used to tag the package using VERSION.
The commands ctcommit and cttag cannot be used for tagging branches.
For releasing changes to production releases, contact the coordinator for the release. Do not use the web interface.