Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 493 Bytes

RELEASE.md

File metadata and controls

35 lines (25 loc) · 493 Bytes

Release

Update gettext.js

You will need to install yarn.

yarn run clean:all
yarn install
yarn run build

Make release

  • Check code before releasing the package.
pre-commit run -a
  • Bump versions
hatch version <new_version>
git add jupyterlab_translate/__init__.py
git commit -m "Bump version"
git tag <new_tag>
  • Push commits and tags and CI will build and publish the package.
git push upstream main
git push upstream --tags