Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Latest commit

 

History

History
47 lines (33 loc) · 729 Bytes

RELEASE.md

File metadata and controls

47 lines (33 loc) · 729 Bytes

Releasing

  • Update version in __about__.py
  • Update CHANGELOG.md
  • Update README.md and docs
    • Links to Binder should use the new version
  • Update root requirements.txt to use the new version

Upload to PyPI

export VERSION=1.0.0

# Optional reset
task resetjs
task download-assets js-install

# Clean and install JS
task cleanall
task js-build

# Build Python and publish
task build
hatch publish

git commit -am "Release ${VERSION}" --allow-empty
git tag ${VERSION}

git push origin ${VERSION}
git push

NPM release

  • Update version in package.json
export VERSION=1.0.0

cd js

npm version ${VERSION}
npm publish

git commit -am "NPM Release ${VERSION}" --allow-empty
git push