Skip to content
Gaute Hope edited this page Jan 4, 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"
  • 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
    • update version no
  • cd ..
  • conda activate opendrift_packages
  • conda build opendrift
  • anaconda upload -u OpenDrift .../path/from/above/command.

Clone this wiki locally