Skip to content
Gaute Hope edited this page Jan 26, 2021 · 18 revisions

Releasing a new OpenDrift version

  • Checkout branch master from origin (official opendrift repository)
  • Make sure master is up-to-date (git pull)
  • Update history.rst
  • Update opendrift/version.py
  • Stage changes: git add -u .
  • Make a release commit on master: git commit -m "Release x.y.z"
  • Push the release commit to origin: git push
  • Tag the new release: git tag -s vx.y.z
  • Push the tag to the origin repository: git push origin --tags

Conda

  • cd opendrift-conda-packages/opendrift
  • edit meta.yaml:
    • reset build no to 0.
    • update version no to match tag from above.
  • Commit and push modifications to a new Pull request to opendrift-conda-packages
  • If everything is fine; merge pull-request and push, and packages should be uploaded after they are built.

Clone this wiki locally