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.
- Locally, create a minor release branch from the
develop
branch when making a minor release, or create a patch release branch from themain
branch when making a patch release. Ideally, a patch release is published immediately after a bug fix is merged onmain
. Therefore, it might be best to do the release updates directly on the bug fix branch. This way, we do not have to create a separate patch release branch. - Run tutorial notebooks and examples in the documentation locally.
Confirm that they produce the expected results.
From time to time, check the documentation links (
make linkcheck
). Fix broken links. - Ensure all contributors are included and sorted correctly by reviewing the contributor
list
__credits__
inkikuchipy/__init__.py
. Do the same for the Zenodo contributors file.zenodo.json
. - Increment the version number in
kikuchipy/__init__.py
. Review and clean upCHANGELOG.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 ontomain
.
- If the
__version__
inkikuchipy/__init__.py
onmain
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 themain
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.
- Monitor the documentation build to 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 tutorial notebooks by clicking the Binder badge in the top banner of one of the tutorials in the online documentation.
- Bring changes on
main
ontodevelop
by branching frommain
, mergingdevelop
onto the new branch, and fixing potential conflicts. After any conflicts are fixed, update or revert__version__
and make any updates to this guide if necessary. Make a PR todevelop
and merge. - Tidy up GitHub issues and close the corresponding milestone.
- A PR to the conda-forge feedstock will automatically be created by the conda-forge bot. Follow the instructions in the PR and any relevant instructions in the conda-forge documentation on updating packages. Merge the PR after checks pass. Monitor the Azure pipeline CI to ensure that the release is successfully published to conda-forge.