This document is for VoxelGPT maintainers looking to release a new version of the plugin.
Note that you must have the contributor steps completed before running the commands below.
The simplest way to release a new version of VoxelGPT is to run the following script, which automates the steps described below.
yarn release $VERSION
Alternatively, you can follow these steps to manually create a release.
yarn build
Bump the version of the plugin by running:
# bumps the patch version (for bug fixes only)
yarn bump
# manually set the version
yarn bump $VERSION
Only files committed locally will be included in the plugin archive.
This is also a good time to tag the new version.
VERSION=1.1.1
git checkout -b release/$VERSION
git add . # files you want included
git commit -m 'release version $VERSION'
git tag $VERSION
git push origin --follow-tags # push the commit and tags
yarn archive