Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 588 Bytes

RELEASE.md

File metadata and controls

28 lines (23 loc) · 588 Bytes

Release procedure

Increment versions, commit and tag

  1. Increment the version in setup.py
  2. Increment the version in cldoc-static/package.json (new minor version, micro version to 0)
  3. Commit and tag:
git add setup.py cldoc-static/package.json
git commit -m "Release version <version>"
git tag -a -m "Release version <version>" v<version>

Release source version to pypi

python setup.py sdist upload

Release static site generator to npm

cd cldoc-static
npm publish

Push to remote

git push --tags master:master