Release Procedure
The changes necessary for the release are first made on a "deployment" branch which are then merged in to the release branch via a pull request. The following diagram gives an overview of the steps that follow.
gitGraph
commit id: "some feature"
branch v3.1_release
checkout v3.1_release
branch CDDSO-X_3.1.0_release
checkout CDDSO-X_3.1.0_release
commit id: "Disable Dev Mode"
commit id: "Update CHANGES.md"
checkout v3.1_release
merge CDDSO-X_3.1.0_release tag: "v3.1.0"
commit id: "Enable Dev Mode / Version"
commit id: "New 3.1.1 features"
checkout main
cherry-pick id: "Update CHANGES.md"
Create a Deployment Branch
git checkout <release_branch>
git checkout -b <ticket_number>_v<tag>_release
where <release_branch>
is the name of the release branch. If an appropriate release branch doesn't exist, create one:
git checkout main
git checkout -b v<release_version>_release
where <release_version>
is e.g. 3.1
.
Prepare the Deployment Branch
- Update the development tag in
cdds/cdds/__init__.py
andmip_covert/mip_convert/__init__.py
Use following command to do that:_DEV = False
sed -i "s/_DEV = True/_DEV = False/" */*/__init__.py
- Check
_NUMERICAL_VERSION
incdds/cdds/__init__.py
andmip_covert/mip_convert/__init__.py
. It should be set to the current release version e.g.3.1.0
(This must include any suffixes e.g. for release candidates) - Ensure that:
- All changes since the last release have been described in the relevant
CHANGES.md
files. These should be added as a separate commit to allow cherry picking onto main later - Any new files added since the last release that do not have a
.py
extension are included inMANIFEST.in
andsetup.py
.
- All changes since the last release have been described in the relevant
Publish the Documentation
- Deploy the new version of the documentation.
where
mike deploy <last_major_release_version>
last_major_release_version
is the last major release version, e.g3.1
- Verify the new deployment works as expected.
mike serve
- Publish the new documentation version:
git push origin gh-pages
- If a major version is released then the new documentation version must be set as default:
For more information, see Documentation. If you have any doubts, please speak to Jared or Matthew.
mike deploy <major_release_version> latest --update-aliases --push
Merge Deployment Branch into Release Branch
- Create a pull request for the changes. After the pull request is approved, merge the changes into the release branch, but do not squash merge them. This will allow you cherry-pick release notes from the release branch into main.
Warning
After changing this version number, the setup script won't work until the new version has been installed centrally in the cdds account.
Create a tag
Danger
You must remember to git checkout
the v3.X_release
branch and then git pull
the changes that were merged via PR.
Only those that have admin permissions on the CDDS repository can create tags.
- Switch to the branch you want to tag (normally, the release branch) and make sure you have pulled changes on github to your local branch – failure to do this can lead to installation errors that manifest as failure to build wheels
- Create the tag:
The
git tag <tagname> -a
<tagname>
normally is the release version, e.g.v3.1.0
. - Push the tag to the branch:
git push origin <tagname>
- To show all tags and check if your tag is successfully created, run:
git tag -l
Info
Github has a good documentation about release processes, see: Managing releases - GitHub Docs
Install the code
Follow the instructions provided in the Installation guide.
Restore development mode and bump version
- Update the development tag and version number in
<cdds_component>/<cdds_component>/__init__.py
:where_DEV = True _NUMERICAL_VERSION = '<next_version>'
<next_version>
is the next minor version, e.g.3.1.1
. - Commit and push the change directly to the release branch. The commit message should be:
<ticket_number>: Restore development mode.
Propagate Release Note to main
- Ensure local copy of both
main
andrelease_branch
are up to date. - On the main branch use the
git cherry-pick
command to pull in just theCHANGES.md
updates with release notes and commit them.
If you are unable to use the cherry-pick for the changes then the following may be useful.
-
git merge
the release branch into the trunk e.g.,git merge v3.1_release --no-commit
- Inspect the differences in the local copy of the main branch
- Revert any changes other than to the
CHANGES.md
file - Commit and push changes to the main branch.
Important
Do not delete the release branch! (expect Matthew Mizielinski told you so)
Create Release on GitHub
Create a release on github from the tag. Include all major release notes and ensure that all links back to Jira work as expected. Create a discussion announcement from the release.
Close Jira ticket
Set the status of the Jira ticket to Done
.