Memory Pool System Version Create Procedure
author | Richard Kistruck |
confidentiality | public |
copyright | See C. Copyright and License |
date | 2008-10-29 |
organization | Ravenbrook Limited |
readership | MPS developers |
revision | //info.ravenbrook.com/project/mps/master/procedure/version-create.rst#22 |
1. Introduction
This document tells you how to create a new version from the master sources. (For example, if the last version of the MPS is 1.105, with releases 1.105.0 and 1.105.1, this document tells you how to abandon the 1.105 lineage and take a new clone from the master sources to create version 1.106).
Refer to "Product Quality Through Change Management" [RB_1999-05-20] for background, terminology, rationale, and usage guidance. This tells you what "a version" actually is.
2. Preamble
2.1. Do I need this procedure?
You might not need to create a new version. An alternative is to create a further "point release" on the existing version. Refer to [RB_1999-05-20] when deciding. (Summary: if changing the specification, make a new version; if improving the product against an unchanged specification, make a point release.)
2.2. What is a version?
A version is a clone of all the master sources, that has its own evolution. A version has these parts:
The version branch specification, which defines the mapping used to integrate from the master sources to the version sources. By convention, the name of the branch specification is mps/version/A.BBB so that it exactly matches the path name of the version's sub-tree. For example:
$ p4 branch -o mps/version/1.105 ... View: //info.ravenbrook.com/project/mps/master/... //info.ravenbrook.com/project/mps/version/1.105/... ...
The version sources, in the version/A.BBB/... sub-tree. Usually these are clones of the master sources, and were created in a single change with p4 integrate -b BRANCH. Some files may then be further modified.
The version origin, the last change on the master sources that made it into the version sources by virtue of the initial integrate command.
An entry in the table of versions.
3. Procedure: How to make a new version
3.1. Pre-branch checklist
- Are you an authenticated Git Fusion user? If not, follow the follow the Git Fusion procedures first.
- Does code/version.c in the master sources contain the correct value for the MPS_RELEASE macro? It should be the name of the first release from the version you are about to create. If it is wrong, correct and submit it.
- Does code/version.c in the master sources have the correct copyright dates for the MPSCopyrightNotice string? It should include the current year. If it is wrong, correct and submit it.
3.2. Automated procedure
Run the script tool/branch, passing the options:
- -P mps — project name
- -p master — parent branch
- -C CHANGELEVEL — changelevel at which to make the branch
- -v — request a version branch
- -d "DESCRIPTION" — description of the branch (see below)
- -g — create a corresponding Git branch using Git Fusion
The branch description will be published in the version index and should be a short summary of the improvements detailed in the release notes.
If omitted, the project and parent branch are deduced from the current directory, and the changelevel defaults to the most recent change on the parent branch. A typical invocation looks like this:
tool/branch -v -d "Improved interface to generation chains." -g
Visually check the output of the script against 3.3. Manual procedure, and when satisfied, repeat the invocation with the -y option.
3.3. Manual procedure
Create the version branch specification by running:
VERSION=A.BBB BRANCH=mps/version/$VERSION p4 branch -i <<END Branch: $BRANCH Description: Branching master sources for version $VERSION. View: //info.ravenbrook.com/project/mps/master/... //info.ravenbrook.com/project/$BRANCH/... END
Create the branch itself by running:
p4 populate -b $BRANCH -d "Branching master sources for version $VERSION."
Determine the origin of the new version:
p4 changes -m 5 //info.ravenbrook.com/project/mps/master/...
Note the latest change that was in before the populate.
Update the table of versions.
Add the version to the “mps” and “mps-public” repos published by Git Fusion by editing //.git-fusion/repos/mps/p4gf_config and //.git-fusion/repos/mps-public/p4gf_config with entries similar to existing version branches.
3.4. Post-branch checklist
Ensure that the branch appears correctly at:
- the internal index at https://info.ravenbrook.com/project/mps/version
- the external index at https://www.ravenbrook.com/project/mps/version
- the GitHub mirror at https://github.com/Ravenbrook/mps/branches
A. References
[RB_1999-05-20] | (1, 2) Richard Brooksby; "Product Quality Through Change Management"; Ravenbrook Limited; 1999-05-20; https://www.ravenbrook.com/doc/1999/05/20/pqtcm/ |
B. Document History
2005-10-03 | RHSK | Created. |
2006-12-27 | RHSK | Step 0: edit some files on master before making version branch |
2007-07-05 | RHSK | Releasename now also in w3build.bat. Make sure all submitted before integ. |
2008-10-29 | RHSK | Convert from text to html. |
2010-11-06 | RHSK | Correctly format example of p4 branch -o mps/version/1.105 |
2014-01-13 | GDR | Make procedure less error-prone by giving exact sequence of commands (where possible) based on experience of version 1.112. |
2014-01-14 | GDR | Step for adding to Git Fusion. |
2014-03-19 | GDR | Describe automated procedure. |
2016-01-28 | RB | Git repository renamed from mps-temporary to mps. |
2016-04-05 | RB | Bringing up to date in preparation for version 1.115. |
2020-07-28 | PNJ | Updated licence text. |
C. Copyright and License
Copyright © 2002–2020 Ravenbrook Limited.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.