To release a new version of pycalphad-xml:
These steps assume that 0.1 is the most recently tagged version number and 0.2 is the next version number to be released.
Replace their values with the last public release's version number and the new version number as appropriate.
- Determine what the next version number should be using semantic versioning.
- Resolve or defer all pull requests and issues tagged with the upcoming version milestone.
git stashto save any uncommitted work.git checkout maingit pullto make sure you haven't missed any last-minute commits. After this point, nothing else is making it into this version.pytestto ensure that all tests pass locally.- Update
CHANGES.rstwith a human-readable list of changes since the last commit.git log --oneline --no-decorate --color 0.1^..maincan be used to list the changes since the last version. git add CHANGES.rstto stage the updated documentation.git commit -m "REL: 0.2"to commit the changes.git push origin main- Verify that all continuous integration test and build workflows pass.
- Create a release on GitHub
- Go to https://github.com/pycalphad/pycalphad-xml/releases/new
- Set the "Tag version" field to
0.2. - Set the branch target to
main. - Set the "Release title" to
pycalphad-xml 0.2. - Leave the description box blank.
- If this version is a pre-release, check the "This is a pre-release" box.
- Click "Publish release".
- The new version will be available on PyPI when the
Build and deploy to PyPIworkflow on GitHub Actions finishes successfully.
Warning
DO NOT FOLLOW THESE STEPS unless the GitHub Actions deployment workflow is broken.
Creating a GitHub release should trigger the Build and deploy to PyPI workflow on GitHub Actions that will upload source and platform-dependent wheel distributions automatically.
To release a source distribution to PyPI:
- If deploying for the first time:
pip install twine build rm -R dist/*on Linux/OSX ordel dist/*on Windowsgit checkout mainto checkout the latest versiongit pullgit logto verify the repository state matches the newly created tagpython -m build --sdist- Make sure that the script correctly detected the new version exactly and not a dirty / revised state of the repo.
twine upload dist/*to upload (assumes a correctly configured~/.pypircfile)