Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 299 Bytes

RELEASES.md

File metadata and controls

18 lines (15 loc) · 299 Bytes

Submitting a new release to PyPI:

Commit changes in git. Then:

python setup.py sdist upload
git tag -a X.X.X -m 'comment'
git push
git push --tags

Submitting a new release to NPM:

cd js
git clean -fdx # nuke the  `dist` and `node_modules`
npm install
npm publish