Skip to content

Latest commit

 

History

History
76 lines (45 loc) · 2.42 KB

RELEASE.md

File metadata and controls

76 lines (45 loc) · 2.42 KB

Release-Cricket

Use this collection of repositories for creating release Tag for the Cricket.

Installing Sources

From a tar file

Unpack the tar file in a convenient directory, using tar -xzf tarfile.tgz -C destdir.

Then change directory to the destdir.

From gitlab-x.mcci.com

Clone the repository from MCCI's gitlab-x server using the command:

git clone --recursive [email protected]:Seenivasan/collection-cricket.git

Then change directories to the top level of the cloned repository.

About Project Directory

  • Source files - collection-cricket/cricket/
  • User Guide and Release Notes - collection-cricket/doc/
  • Installer for Windows and Mac - collection-cricket/installer/
  • README.md - collection-cricket/
  • RELEASE.md - collection-cricket/

Update the changes

Update the Source

The source linked as submodule, move to the source directory verify the required changes for the current release and commit the changes with the release message.

Update the User Guide Dcoument

Update the User guide document 'MCCI-Cricket-UI-User-Guide' if needed and commit if any changes with release message.

For any changes in User Guide Document , it must be sent to MCCI document publish process.

Update the Installer

If any changes in installer script, update and commit the changes with release message.

Update the Readme.md

If any changes in installation and build procedure update the instructions in README.md and commit the changes with proper message.

Update the Release Notes

Update the Release notes with all updates made for the release and commit the changes with proper message.

For any changes in Release Notes , it must be sent to MCCI document publish process.

Release procedure

To create a release Tag from a git repo, follow this procedure.

  • Create a tag for the release in the top-level repository. Usually this is of the form Vx.y.z.
git checkout master
git tag -a vx.y.z -m "release-Vx.y.z"
git push origin --tags