Skip to content

Latest commit

 

History

History
76 lines (61 loc) · 3.46 KB

RELEASE.rst

File metadata and controls

76 lines (61 loc) · 3.46 KB

How to make a new release of kikuchipy

kikuchipy's branching model is similar to the Gitflow Workflow (original blog post).

kikuchipy versioning tries its best to adhere to Semantic Versioning. See the Python Enhancement Proposal (PEP) 440 for supported version identifiers.

Preparation

  • Locally, create a minor release branch from the develop branch when making a minor release, or create a patch release branch from the main branch when making a patch release. Ideally, a patch release is published immediately after a bug fix is merged in main. Therefore, it might be best to do the release updates directly on the bug fix branch, so that no separate patch release branch has to be made.
  • Run tutorial notebooks and examples in the documentation locally and confirm that they produce the expected results. From time to time, check the documentation links (make linkchecker) and fix any broken ones.
  • Review the contributor list __credits__ in kikuchipy/release.py to ensure all contributors are included and sorted correctly. Do the same for the Zenodo contributors file .zenodo.json. Review .all-contributorsrc and regenerate the table if necessary.
  • Increment the version number in kikuchipy/release.py. Review and clean up CHANGELOG.rst as per Keep a Changelog.
  • Make a PR of the release branch to main. Discuss the changelog with others, and make any changes directly to the release branch. Merge the branch onto main.

Tag and release

  • If the __version__ in kikuchipy/release.py on main has changed in a new commit, a tagged, annotated release draft is automatically created. If __version__ is now "0.42.0", the release name is "kikuchipy 0.42.0", and the tag name is "v0.42.0". The tag target will be the main branch. The release body contains a static description and a link to the changelog. This release draft can be published as is, or changes to the release body can be made before publishing.
  • Monitor the publish workflow to ensure the release is successfully published to PyPI.

Post-release action

  • Monitor the documentation build ensure that the new stable documentation is successfully built from the release.
  • Ensure that Zenodo displays the new release.
  • Ensure that Binder can run the user guide notebooks by clicking the Binder badges in the top banner of one of the tutorials via Read The Docs.
  • Bring changes on main into develop by branching from main, merge develop into the new branch and fix potential conflicts. After these conflicts are fixed, update or revert __version__ and make any updates to this guide if necessary. Make a PR to develop and merge.
  • Tidy up GitHub issues and close the corresponding milestone.
  • A PR to the conda-forge feedstock will be created by the conda-forge bot. Follow the relevant instructions from the conda-forge documentation on updating packages, as well as the instructions in the PR. Merge after checks pass. Monitor the Azure pipeline CI to ensure the release is successfully published to conda-forge.