Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 866 Bytes

RELEASING.md

File metadata and controls

25 lines (18 loc) · 866 Bytes

Releasing Geoxarray

  1. checkout main branch

  2. pull from repo

  3. run the unittests

  4. run loghub and update the CHANGELOG.md file:

    loghub geoxarray/geoxarray --token $LOGHUB_GITHUB_TOKEN -st $(git tag --sort=-version:refname --list 'v*' | head -n 1) -plg bug "Bugs fixed" -plg enhancement "Features added" -plg documentation "Documentation changes" -plg backwards-incompatibility "Backward incompatible changes" -plg refactor "Refactoring"
    

Don't forget to commit!

  1. Create a tag with the new version number, starting with a 'v', eg:
git tag -a v0.22.45 -m "Version 0.22.45"

See semver.org on how to write a version number.

  1. push changes to github git push --follow-tags
  2. Verify github action tests passed
  3. Create github release
  4. Verify deploy github workflow passes and package deployed to PyPI