Depending on the number changes, it may be necessary to raise the version number (see GlobalVersion, GlobalPath, version/1 at Manifest.pl, etc.).
Given an odd minor number version of the system (e.g., development v1.1), the release plan consists on selecting some new features, test and fix the system as required, compose a changelog, increment the version to an even number (e.g., stable v1.2), save this point in the source history, and increment again the version number to an odd number (e.g., development v1.3).
This is detailed as follows:
git tag -a vMajor.Minor.Patch COMMIT_ID -m 'Version jumped to Major.Minor.Patch'
git push origin vMajor.Minor.Patch