Release procedure

Preliminaries

  • The procedure applies to both ixmp and message_ix.

  • The ixmp release must be processed before message_ix.

  • The person (or persons) processing the release needs the following authorizations:

    • Maintainer or Owner on both Github repositories.

    • Maintainer on the conda-forge/ixmp-feedstock and message-ix-feedstock repositories. This means your Github account is listed in the recipe/meta.yaml, under the key recipe-maintainers:.

  • In the below:

    • <version> stands for the full version number, e.g. 1.2.0. Always include all three parts: major, minor, and patch, i.e. 1.2.0 and never 1.2. Look very carefully to see when v<version> versus <version> should be used.

    • <upstream> stands for your local name for the Git remote that is the IIASA Github repository.

Before releasing

Update these instructions. Keep them current with actual practice.

Handle deprecations. You can find these by searching the code base for “deprecat”.

A deprecation always involves two versions: (1) the version in which the item “is [marked as] deprecated”, and (2) the version in which the item is removed. These must always be separated by at least one major version. For instance, an item marked as deprecated in v2.1 can be removed as of v3.0; an item marked as deprecated in v3.0 can be removed in v4.0, or later, e.g. in v5.0.

  1. Mark any new deprecations. Explicitly state the version when the removal is targeted, so that users can adjust their code.

  2. Remove any items targeted for removal in this release.

    Note

    This can be done at any point, and should be done before the release prep begins. For instance, a feature marked as deprecated in v2.0 should be removed before 3.0 is released. But may also be removed from the master branch immediately after 2.0.0 is released. This is preferred, because it forces tutorials, user code, etc. to stay ahead of deprecations.

Check continuous integration. Any failures in (3) or (4) must be corrected before releasing.

  1. Check https://github.com/iiasa/message_ix/actions/ (or equivalent for ixmp) to ensure that the push and scheduled builds are passing.

  2. Check https://readthedocs.com/projects/iiasa-energy-program-message-ix/builds/ (or ixmp) to ensure that the docs build is passing.

If necessary, make and merge ≥1 PR(s) to address (1–4).

Releasing

  1. (message_ix only) Edit setup.cfg, to update the install_requires line for ixmp.

    Each version of message_ix must depend on the corresponding version of ixmp. For instance, message_ix 3.1.0 depends on ixmp ≥ 3.1.0; not ixmp 3.0.0.

  2. Edit RELEASE_NOTES.rst:

    • Comment the heading “Next release”, and insert below it:

      • A commented “All changes” sub-heading (---).

      • A ReST anchor with the version number.

      • Another heading (===) below it, with the version number and date

    • Add a short text description summarizing the release.

    • If necessary, add a subsection “Migration notes” explaining to users how to adjust to changes in the release.

    For example, the top of the file should look like:

    Before editing
    Next release
    ============
    
    All changes
    -----------
    
    - Description of a change (:pull:`9999`).
    
    After editing
    .. Next release
    .. ============
    
    .. All changes
    .. -----------
    
    .. _v99.98.0:
    
    v99.98.0 (2035-10-12)
    =====================
    
    Here is a description of the release.
    
    Migration notes
    ---------------
    
    Here is guidance on how to adjust to the release.
    
    All changes
    -----------
    
    - Description of a change (:pull:`9999`).
    

    Build the docs locally to ensure any ReST markup in these additions renders correctly.

  3. Make a commit with a message like “Mark v<version> in release notes”.

  4. Tag the release candidate version, i.e. with a rcN suffix, and push:

    $ git tag v1.2.3rc1
    $ git push --tags origin main
    
  5. Check:

    Address any warnings or errors that appear. If needed, make a new commit. Go back to step (2), incrementing the release candidate number, e.g. from rc1 to rc2.

  6. (optional) Tag the release itself and push:

    $ git tag v<version>
    $ git push --tags origin main
    

    This step (but not step (4)) can be performed directly on GitHub; see (7), next.

  7. Visit https://github.com/iiasa/message-ix/releases (or ixmp) and mark the new release: either using the pushed tag from (6), or by creating the tag and release simultaneously.

    For the description, provide a link to the section in the “What’s New” page of the documentation that corresponds to the new release, using the anchor added in (2), above. For example:

    See [“What's New”](https://docs.messageix.org/en/stable/whatsnew.html#v99-98-0) in the documentation for a list of all changes.
    
  8. Check at https://github.com/iiasa/message_ix/actions/workflows/publish.yaml (or ixmp) and https://pypi.org/project/message-ix/ (or ixmp) that the distributions are published.

  9. Update on conda-forge. A PR should automatically be opened by a bot after the GitHub release (sometimes this takes up to 30 minutes).

    1. Confirm that any new dependencies are added. The minimum versions in meta.yaml should match the versions in setup.cfg.

    2. Ensure that tests pass and complete any other checklist items.

    3. Merge the PR.

    4. Check that the new package version appears on conda-forge. This may take up to several hours.

  10. Announce the release(s) on our mailing list/Google group and/or on Twitter. Copy the text from the What’s New page of the built documentation.